-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
37 lines (37 loc) · 926 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
32
33
34
35
36
37
{
"python.testing.pytestArgs": [
"."
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.envFile": "${workspaceFolder}/.venv",
"python.analysis.extraPaths": [
],
"editor.formatOnSaveMode": "file",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
},
"isort.args": [
"--profile",
"black"
],
"flake8.args": [
"--max-line-length=120"
],
"pylint.args": [
"--max-line-length=120"
],
"black-formatter.args": [
"--line-length",
"120"
],
"python.analysis.typeCheckingMode": "basic"
}