Skip to content

Commit 649de0b

Browse files
authored
Add default formatting style to html and css files (#114)
This is a format-only change, no behavior or style value is changed. Based on #108.
1 parent 8c0c7d2 commit 649de0b

4 files changed

Lines changed: 430 additions & 250 deletions

File tree

.vscode/settings.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"[html]": {
3+
"editor.defaultFormatter": "vscode.html-language-features",
4+
"editor.tabSize": 2,
5+
},
6+
"[scss]": {
7+
"editor.defaultFormatter": "vscode.css-language-features",
8+
"editor.tabSize": 2,
9+
},
10+
"[css]": {
11+
"editor.tabSize": 2,
12+
},
13+
"files.insertFinalNewline": true,
14+
"html.format.indentInnerHtml": true,
15+
"css.format.spaceAroundSelectorSeparator": true,
16+
}

0 commit comments

Comments
 (0)