changed some settings
This commit is contained in:
parent
3a8ded02ae
commit
dc319ea862
1 changed files with 9 additions and 8 deletions
17
.vscode/settings.json
vendored
17
.vscode/settings.json
vendored
|
|
@ -1,22 +1,23 @@
|
||||||
{
|
{
|
||||||
"python.terminal.activateEnvInCurrentTerminal": true,
|
|
||||||
"python.analysis.diagnosticMode": "workspace",
|
|
||||||
"python.linting.flake8Enabled": true,
|
|
||||||
"python.analysis.typeCheckingMode": "strict",
|
|
||||||
"files.exclude": {
|
"files.exclude": {
|
||||||
".venv/": true,
|
".venv/": true,
|
||||||
"**/__pycache__/": true,
|
"**/__pycache__/": true,
|
||||||
"**/.pytest_cache/": true,
|
"**/.pytest_cache/": true,
|
||||||
"**/*.egg-info/": true
|
"**/*.egg-info/": true
|
||||||
},
|
},
|
||||||
"python.testing.pytestArgs": [],
|
"python.analysis.autoImportCompletions": true,
|
||||||
"python.testing.unittestEnabled": false,
|
"python.analysis.diagnosticMode": "workspace",
|
||||||
"python.testing.pytestEnabled": true,
|
"python.analysis.typeCheckingMode": "strict",
|
||||||
"python.formatting.autopep8Args": [
|
"python.formatting.autopep8Args": [
|
||||||
"--max-line-length",
|
"--max-line-length",
|
||||||
"100",
|
"100",
|
||||||
"--aggressive",
|
"--aggressive",
|
||||||
"--ignore",
|
"--ignore",
|
||||||
"W503"
|
"W503"
|
||||||
]
|
],
|
||||||
|
"python.linting.flake8Enabled": true,
|
||||||
|
"python.terminal.activateEnvInCurrentTerminal": true,
|
||||||
|
"python.testing.pytestArgs": [],
|
||||||
|
"python.testing.unittestEnabled": false,
|
||||||
|
"python.testing.pytestEnabled": true
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue