From 406eb5a81e81146fb5852e47c4bec4ee0644adaa Mon Sep 17 00:00:00 2001 From: Mose Mueller Date: Mon, 10 Apr 2023 17:14:21 +0200 Subject: [PATCH] Adding vscode config --- .vscode/settings.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..af112ad --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,29 @@ +{ + "autoDocstring.docstringFormat": "google", + "autoDocstring.startOnNewLine": true, + "autoDocstring.generateDocstringOnEnter": true, + "editor.formatOnSave": true, + "editor.codeActionsOnSave": { + "source.fixAll.eslint": true + }, + "editor.rulers": [ + 88 + ], + "python.defaultInterpreterPath": ".venv/bin/python", + "python.formatting.provider": "black", + "python.linting.lintOnSave": true, + "python.linting.enabled": true, + "python.linting.flake8Enabled": true, + "python.linting.mypyEnabled": true, + "[python]": { + "editor.tabSize": 4, + "editor.detectIndentation": false, + "editor.codeActionsOnSave": { + "source.organizeImports": true + } + }, + "[yaml]": { + "editor.tabSize": 2, + "editor.detectIndentation": false + }, +} \ No newline at end of file