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
22 lines (22 loc) · 764 Bytes
/
settings.json
File metadata and controls
22 lines (22 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": false,
"python.workspaceSymbols.enabled": false,
"python.unitTest.nosetestArgs": [],
"python.unitTest.pyTestArgs": [],
"python.unitTest.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.formatting.provider": "yapf",
"python.linting.pylintUseMinimalCheckers": false,
"python.pythonPath": "python"
}