File tree 1 file changed +44
-0
lines changed
1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "eslint.validate" : [
3
+ " javascript" ,
4
+ " javascriptreact" ,
5
+ " typescript" ,
6
+ " typescriptreact" ,
7
+ " html" ,
8
+ " markdown"
9
+ ],
10
+ "editor.codeActionsOnSave" : {
11
+ "source.fixAll.eslint" : true
12
+ },
13
+ "search.exclude" : {
14
+ "**/.git" : true ,
15
+ "**/.svn" : true ,
16
+ "**/.hg" : true ,
17
+ "**/CVS" : true ,
18
+ "**/.DS_Store" : true ,
19
+ "docs/docs/out/**" : true ,
20
+ "packages/*/lib/**" : true
21
+ },
22
+ "typescript.tsdk" : " node_modules/typescript/lib" ,
23
+ "[typescript]" : {
24
+ "editor.defaultFormatter" : " esbenp.prettier-vscode"
25
+ },
26
+ "[typescriptreact]" : {
27
+ "editor.defaultFormatter" : " esbenp.prettier-vscode"
28
+ },
29
+ "[javascript]" : {
30
+ "editor.defaultFormatter" : " esbenp.prettier-vscode"
31
+ },
32
+ "[javascriptreact]" : {
33
+ "editor.defaultFormatter" : " esbenp.prettier-vscode"
34
+ },
35
+ "[markdown]" : {
36
+ "editor.quickSuggestions" : {
37
+ "other" : true ,
38
+ "comments" : true ,
39
+ "strings" : true
40
+ }
41
+ },
42
+ "eslint.trace.server" : " verbose"
43
+ }
44
+
You can’t perform that action at this time.
0 commit comments