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
17 lines (17 loc) · 791 Bytes
/
settings.json
File metadata and controls
17 lines (17 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": false,
"python.testing.pytestArgs": [],
"python.testing.unittestArgs": ["-s=./tests", "-p=test_*.py", "-v", "-s", ".", "-p", "*test*.py"],
"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,
// Don't set this to `Pylance`, for CI we want to use the LS that ships with the extension.
"python.languageServer": "Jedi",
"python.pythonPath": "C:\\GIT\\s p\\vscode-python\\.venv\\Scripts\\python.exe"
}