From 885117ecbeaaaa45e022deda76c79af828119867 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luiz=20Ot=C3=A1vio?= Date: Sun, 23 Oct 2022 06:36:40 -0300 Subject: [PATCH] add vscode config --- .vscode/settings.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..95d58a2 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,32 @@ +{ + "window.zoomLevel": 2, + "editor.fontFamily": "'Dank Mono', Consolas, Menlo, Monaco, 'Courier New', monospace", + "terminal.integrated.fontFamily": "'Dank Mono', Consolas, Menlo, Monaco, 'Courier New', monospace", + "workbench.colorTheme": "OM Theme (Default Dracula Italic)", + // Python + "[python]": { + "editor.defaultFormatter": "ms-python.python", + "editor.tabSize": 4, + "editor.insertSpaces": true, + "editor.formatOnSave": true, + "editor.codeActionsOnSave": { + // "source.organizeImports": true + } + }, + "python.languageServer": "Pylance", + "python.formatting.autopep8Args": [ + "--indent-size=4" + // "--ignore=E111", + ], + "python.linting.flake8Args": [ + // "--ignore=E111", + ], + "python.linting.pylintArgs": [ + "--load-plugins=pylint_django", + "--errors-only" + ], + "python.linting.flake8Enabled": false, + "python.testing.unittestEnabled": false, + "python.linting.mypyEnabled": false, + "python.defaultInterpreterPath": "./venv/bin/python" +}