1
Fork 0

Compare commits

..

2 Commits

Author SHA1 Message Date
Bauke 6ed8ad1d65
Add default formatter for SCSS. 2022-09-27 19:52:08 +02:00
Bauke 12f5891508
Add missing comma. 2022-09-27 19:46:02 +02:00
1 changed files with 5 additions and 1 deletions

View File

@ -137,7 +137,7 @@
"todo-tree.filtering.useBuiltInExcludes": "file excludes",
"todo-tree.highlights.enabled": false,
// Redhat
"redhat.telemetry.enabled": false
"redhat.telemetry.enabled": false,
/* Language-specific overrides. */
"[html]": {
"editor.wordWrap": "on",
@ -167,6 +167,10 @@
"editor.tabSize": 2,
"editor.wordWrap": "wordWrapColumn"
},
"[scss]": {
"editor.defaultFormatter": "stylelint.vscode-stylelint",
"editor.formatOnSave": true
},
"[xml]": {
"editor.wordWrap": "on"
}