diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..851d601 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,27 @@ +{ + // good pratice settings + "editor.formatOnSave": true, + "python.linting.enabled": true, + "python.linting.lintOnSave": true, + "python.linting.mypyEnabled": true, + "files.insertFinalNewline": true, + "python.analysis.typeCheckingMode": "basic", // get ready to be annoyed + "python.formatting.provider": "black", + "[python]": { + "editor.codeActionsOnSave": { + "source.organizeImports": true // isort + } + }, + "files.exclude": { + // defaults + "**/.git": true, + "**/.svn": true, + "**/.hg": true, + "**/CVS": true, + "**/.DS_Store": true, + "**/Thumbs.db": true, + // annoying + "**/__pycache__": true, + "**/.mypy_cache": true, + }, +}