advent-2022-python/.vscode/settings.json
2022-12-03 12:11:39 +01:00

23 lines
No EOL
681 B
JSON

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