1
+ {
2
+ "debug.node.autoAttach" : " on" ,
3
+ "git.ignoreLimitWarning" : true ,
4
+ "javascript.validate.enable" : false ,
5
+ "editor.formatOnSave" : true ,
6
+ "files.watcherExclude" : {
7
+ "**/.git/objects/**" : true ,
8
+ "**/.git/subtree-cache/**" : true ,
9
+ "**/build/**" : true ,
10
+ "**/node_modules/**" : true ,
11
+ },
12
+ "search.exclude" : {
13
+ "**/build/**" : true ,
14
+ "**/node_modules/**" : true ,
15
+ "**/.next/**" : true
16
+ },
17
+ "editor.maxTokenizationLineLength" : 20000000 ,
18
+ "eslint.enable" : true ,
19
+ "eslint.validate" : [
20
+ " javascript" ,
21
+ " javascriptreact" ,
22
+ " typescript" ,
23
+ " typescriptreact"
24
+ ],
25
+ "[javascript]" : {
26
+ "editor.formatOnSave" : false
27
+ },
28
+ "[javascriptreact]" : {
29
+ "editor.formatOnSave" : false
30
+ },
31
+ "[typescript]" : {
32
+ "editor.formatOnSave" : false
33
+ },
34
+ "[typescriptreact]" : {
35
+ "editor.formatOnSave" : false
36
+ },
37
+ "[handlebars]" : {
38
+ "editor.formatOnSave" : false
39
+ },
40
+ "eslint.options" : {
41
+ "extensions" : [
42
+ " .js" ,
43
+ " .jsx" ,
44
+ " .ts" ,
45
+ " .tsx"
46
+ ]
47
+ },
48
+ "typescript.tsdk" : " node_modules/typescript/lib" ,
49
+ "editor.codeActionsOnSave" : {
50
+ "source.fixAll.eslint" : true
51
+ },
52
+ "cSpell.ignorePaths" : [
53
+ " **/package-lock.json" ,
54
+ " **/node_modules/**" ,
55
+ " **/build/**" ,
56
+ " **/vscode-extension/**" ,
57
+ " **/.git/objects/**" ,
58
+ " .vscode" ,
59
+ " .spruce"
60
+ ],
61
+ "cSpell.words" : [
62
+ " arkit" ,
63
+ " autogenerated" ,
64
+ " scrollable" ,
65
+ " serializable"
66
+ ],
67
+ "debug.javascript.unmapMissingSources" : true ,
68
+ "javascript.preferences.importModuleSpecifier" : " relative" ,
69
+ "typescript.preferences.importModuleSpecifier" : " relative"
70
+ }
0 commit comments