1
1
{
2
- "prettier.enable" : true ,
3
- "css.lint.validProperties" : [
4
- " composes"
5
- ],
6
2
"editor.formatOnType" : true ,
7
3
"editor.formatOnSave" : true ,
8
4
"editor.formatOnPaste" : true ,
9
- "[csharp]" : {
10
- "editor.defaultFormatter" : " ms-dotnettools.csharp" ,
11
- "editor.codeActionsOnSave" : {
12
- "source.fixAll" : " explicit"
13
- }
14
- },
15
5
"editor.bracketPairColorization.enabled" : true ,
16
6
"editor.guides.bracketPairs" : " active" ,
17
- "python.formatting.provider" : " autopep8" ,
18
- "python.formatting.autopep8Args" : [
19
- " --max-line-length=120"
20
- ],
21
7
"notebook.output.textLineLimit" : 500 ,
22
- "python.analysis.extraPaths" : [
23
- " ./python/src"
24
- ],
25
- "javascript.updateImportsOnFileMove.enabled" : " always" ,
26
- "search.exclude" : {
27
- "**/node_modules" : true ,
28
- "**/bower_components" : true ,
29
- "**/build" : true
30
- },
31
- "[typescript]" : {
32
- "editor.defaultFormatter" : " esbenp.prettier-vscode" ,
33
- "editor.codeActionsOnSave" : {
34
- "source.organizeImports" : " explicit" ,
35
- "source.fixAll" : " explicit"
36
- }
37
- },
38
- "[typescriptreact]" : {
39
- "editor.defaultFormatter" : " esbenp.prettier-vscode" ,
40
- "editor.codeActionsOnSave" : {
41
- "source.organizeImports" : " explicit" ,
42
- "source.fixAll" : " explicit"
43
- }
44
- },
45
- "typescript.updateImportsOnFileMove.enabled" : " always" ,
46
- "eslint.enable" : true ,
47
- "eslint.validate" : [
48
- " javascript" ,
49
- " javascriptreact" ,
50
- " typescript" ,
51
- " typescriptreact"
52
- ],
53
- "eslint.lintTask.enable" : true ,
54
- "eslint.workingDirectories" : [
55
- {
56
- "mode" : " auto"
57
- }
58
- ],
59
- "eslint.options" : {
60
- "overrideConfigFile" : " ./package.json"
61
- },
62
- "files.associations" : {
63
- "*.json" : " jsonc"
64
- },
65
8
"files.exclude" : {
66
9
"**/.git" : true ,
67
10
"**/.svn" : true ,
70
13
"**/.DS_Store" : true ,
71
14
"**/Thumbs.db" : true
72
15
},
73
- "cSpell.words" : [
74
- " Partitioner" ,
75
- " Prompty" ,
76
- " SKEXP"
77
- ],
78
16
"[java]" : {
79
17
"editor.formatOnSave" : false ,
80
18
"editor.tabSize" : 4 ,
81
19
"editor.codeActionsOnSave" : {
82
20
"source.fixAll" : " never"
83
21
},
84
22
},
85
- "emeraldwalk.runonsave" : {
86
- "commands" : [
87
- {
88
- "match" : " \\ .java$" ,
89
- "cmd" : " java -Xmx128m -jar ${workspaceFolder}/java/utilities/google-java-format-1.17.0-all-deps.jar --replace --aosp ${file}"
90
- },
91
- ],
92
- },
93
23
"java.debug.settings.onBuildFailureProceed" : true ,
94
- "java.compile.nullAnalysis.mode" : " disabled" ,
95
- "dotnet.defaultSolution" : " dotnet\\ SK-dotnet.sln" ,
96
- "python.testing.pytestArgs" : [
97
- " python/tests"
98
- ],
99
- "python.testing.unittestEnabled" : false ,
100
- "python.testing.pytestEnabled" : true
101
- }
24
+ "java.compile.nullAnalysis.mode" : " disabled"
25
+ }
0 commit comments