forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
26 lines (26 loc) · 1.03 KB
/
settings.json
File metadata and controls
26 lines (26 loc) · 1.03 KB
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
{
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": false,
"python.workspaceSymbols.enabled": false,
"python.testing.nosetestArgs": [],
"python.testing.pytestArgs": [],
"python.testing.unittestArgs": [
"-s=./tests",
"-p=test_*.py"
],
"python.sortImports.args": [],
"python.linting.lintOnSave": false,
"python.linting.enabled": true,
"python.linting.pep8Enabled": false,
"python.linting.prospectorEnabled": false,
"python.linting.pydocstyleEnabled": false,
"python.linting.pylamaEnabled": false,
"python.linting.mypyEnabled": false,
"python.linting.banditEnabled": false,
"python.formatting.provider": "yapf",
"python.linting.pylintUseMinimalCheckers": false
// Do not set this to true/false even when LS is the default, else
// it will result in LS being downloaded on CI and slow down tests significantly.
// We have other tests on CI for testing downloading of CI with this setting enabled.
// "python.jediEnabled": true
}