forked from microsoft/vscode-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
31 lines (31 loc) · 1.09 KB
/
settings.json
File metadata and controls
31 lines (31 loc) · 1.09 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
27
28
29
30
31
{
"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",
"-v",
"-s",
".",
"-p",
"*test*.py"
],
"python.sortImports.args": [],
"python.linting.lintOnSave": false,
"python.linting.enabled": true,
"python.linting.pycodestyleEnabled": 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 "Microsoft", else it will result in LS being downloaded on CI
// and that slows down tests significantly. We have other tests on CI for testing
// downloading of LS with this setting enabled.
"python.languageServer": "Jedi"
}