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) · 830 Bytes
/
settings.json
File metadata and controls
26 lines (26 loc) · 830 Bytes
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.unitTest.nosetestArgs": [],
"python.unitTest.pyTestArgs": [],
"python.unitTest.unittestArgs": [
"-v",
"-s",
".",
"-p",
"*test*.py"
],
"python.formatting.formatOnSave": false,
"python.sortImports.args": [],
"python.linting.lintOnSave": false,
"python.linting.lintOnTextChange": 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.pythonPath": "python"
}