aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode
diff options
context:
space:
mode:
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/settings.json25
1 files changed, 25 insertions, 0 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 00000000..a2ac0b30
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,25 @@
+{
+ // Exclude from the editor
+ "files.exclude": {
+ "**/node_modules": true
+ },
+
+ // Exclude from search
+ "search.exclude": {
+ "dist/": 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