-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
47 lines (45 loc) · 1.18 KB
/
settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
// editor
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": true
},
// javascript, nodejs
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript]": {
"editor.formatOnSave": true
},
"[typescript]": {
"editor.formatOnSave": true
},
"eslint.workingDirectories": [{ "mode": "auto" }],
"editor.guides.bracketPairs": true,
// python
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true
},
"python.linting.mypyEnabled": true,
"python.linting.mypyArgs": [
"--follow-imports=silent",
"--ignore-missing-imports",
"--show-column-numbers",
"--no-pretty",
"--warn-return-any",
"--no-implicit-optional",
"--disallow-untyped-calls",
"--disallow-untyped-defs",
"--ignore-missing-imports",
"--follow-imports=skip"
],
"python.linting.mypyCategorySeverity.error": "Hint",
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"--line-length",
"79",
"--experimental-string-processing"
],
"java.configuration.updateBuildConfiguration": "interactive"
}