File tree Expand file tree Collapse file tree 1 file changed +36
-1
lines changed Expand file tree Collapse file tree 1 file changed +36
-1
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "cSpell.words" : [" CODELYZER" , " Tmpl" , " whitespaces" ]
2
+ /**
3
+ * Common.
4
+ */
5
+ // Exclude files/folders from searching in VS Code.
6
+ "search.exclude" : {
7
+ ".nyc_output" : true ,
8
+ "coverage" : true ,
9
+ "dist" : true ,
10
+ "node_modules" : true
11
+ },
12
+
13
+ /**
14
+ * Code language formatting.
15
+ */
16
+ "[typescript]" : {
17
+ "editor.defaultFormatter" : " esbenp.prettier-vscode"
18
+ },
19
+ "[json]" : {
20
+ "editor.defaultFormatter" : " esbenp.prettier-vscode"
21
+ },
22
+ "[jsonc]" : {
23
+ "editor.defaultFormatter" : " esbenp.prettier-vscode"
24
+ },
25
+ "[yaml]" : {
26
+ "editor.defaultFormatter" : " esbenp.prettier-vscode"
27
+ },
28
+
29
+ /**
30
+ * Auto format.
31
+ */
32
+ "editor.formatOnPaste" : true ,
33
+ "editor.formatOnSave" : true ,
34
+ "editor.formatOnType" : true ,
35
+ "editor.codeActionsOnSave" : {
36
+ "source.fixAll.eslint" : true // Fix all fixable ESLint rules.
37
+ }
3
38
}
You can’t perform that action at this time.
0 commit comments