advent-2022-python/.vscode/settings.json
Ruediger Ludwig a355de5d8b Initial
2022-11-30 19:39:52 +01:00

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"
]
}