aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode
diff options
context:
space:
mode:
authorSam Potts <me@sampotts.me>2017-10-27 15:06:16 +1100
committerSam Potts <me@sampotts.me>2017-10-27 15:06:16 +1100
commitdd9d5c8898bd5e58c6faec13d6213b8fe079446a (patch)
tree1b8d84a1e8f581bdd6950a2c160a9e727e290f29 /.vscode
parent71db66d8028b8c71ff271cf380654da1268b8c57 (diff)
downloadplyr-dd9d5c8898bd5e58c6faec13d6213b8fe079446a.tar.lz
plyr-dd9d5c8898bd5e58c6faec13d6213b8fe079446a.tar.xz
plyr-dd9d5c8898bd5e58c6faec13d6213b8fe079446a.zip
Linting and minor changes
Diffstat (limited to '.vscode')
-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
+}