fix: better vscode integration

This commit is contained in:
Laureηt 2021-10-30 14:38:33 +02:00
parent 9549b0684b
commit 56d309e953
No known key found for this signature in database
GPG key ID: D88C6B294FD40994
2 changed files with 11 additions and 0 deletions

1
.gitignore vendored
View file

@ -1,2 +1,3 @@
roms/
.venv/
.mypy_cache/

10
.vscode/settings.json vendored
View file

@ -1,5 +1,15 @@
{
"python.pythonPath": ".venv/bin/python",
"python.formatting.provider": "black",
"editor.formatOnSave": true,
"python.linting.enabled": true,
"python.linting.lintOnSave": true,
"python.linting.flake8Enabled": true,
"python.linting.mypyEnabled": true,
"python.linting.banditEnabled": true,
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
}