-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.json
31 lines (31 loc) · 888 Bytes
/
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
{
"[python]": {
"editor.formatOnPaste": false,
"editor.formatOnSaveMode": "file",
"editor.defaultFormatter": "ms-python.python",
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
"editor.formatOnSave": true,
"isort.args": ["--profile", "black"],
"python.formatting.provider": "black",
"python.analysis.typeCheckingMode": "basic",
"python.linting.pylintEnabled": true,
"python.linting.flake8Enabled": true,
"python.linting.mypyEnabled": true,
"python.linting.mypyArgs": [
"--follow-imports=silent",
"--ignore-missing-imports",
"--show-column-numbers",
"--no-pretty",
"--warn-unreachable",
"--strict"
],
// TODO: Update
"python.linting.mypyPath": "",
"python.linting.flake8Path": "",
"python.linting.pylintPath": "",
"python.formatting.blackPath": "",
"python.defaultInterpreterPath": ""
}