aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode/settings.json
diff options
context:
space:
mode:
Diffstat (limited to '.vscode/settings.json')
-rw-r--r--.vscode/settings.json21
1 files changed, 13 insertions, 8 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json
index a2ac0b30..ce62af13 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -9,17 +9,22 @@
"dist/": true
},
+ // Linting
+ "stylelint.enable": true,
+ "css.validate": false,
+ "scss.validate": false,
+ "javascript.validate.enable": false,
+
+ // Prettier
+ "prettier.eslintIntegration": true,
+ "prettier.cssEnable": ["css", "less"],
+ "prettier.stylelintIntegration": true,
+
// Formatting
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.formatOnSave": true,
// Trim on save
- "files.trimTrailingWhitespace": true,
-
- // Prettier settings
- "prettier.tabWidth": 4,
- "prettier.eslintIntegration": true,
- "prettier.printWidth": 120,
- "prettier.cssEnable": ["css", "less", "scss"]
-} \ No newline at end of file
+ "files.trimTrailingWhitespace": true
+}