Add vscode settings

This commit is contained in:
Joscha 2022-11-23 23:00:25 +01:00
parent 6f87c5c774
commit 354a22d1e3
2 changed files with 8 additions and 1 deletions

1
.gitignore vendored
View File

@ -2,7 +2,6 @@
/.venv/
/PFERD.egg-info/
__pycache__/
/.vscode/
# pyinstaller
/pferd.spec

8
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,8 @@
{
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"python.formatting.provider": "autopep8",
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.mypyEnabled": true,
}