22 lines
No EOL
630 B
JSON
22 lines
No EOL
630 B
JSON
{
|
|
"python.terminal.activateEnvInCurrentTerminal": true,
|
|
"python.analysis.diagnosticMode": "workspace",
|
|
"python.linting.flake8Enabled": true,
|
|
"python.analysis.typeCheckingMode": "strict",
|
|
"files.exclude": {
|
|
".venv/": true,
|
|
"**/__pycache__/": true,
|
|
"**/.pytest_cache/": true,
|
|
"**/*.egg-info/": true
|
|
},
|
|
"python.testing.pytestArgs": [],
|
|
"python.testing.unittestEnabled": false,
|
|
"python.testing.pytestEnabled": true,
|
|
"python.formatting.autopep8Args": [
|
|
"--max-line-length",
|
|
"100",
|
|
"--aggressive",
|
|
"--ignore",
|
|
"W503"
|
|
]
|
|
} |