From ffe5cd3d8706576dbaf72c63b15aeb18ed375349 Mon Sep 17 00:00:00 2001 From: sanbrock Date: Thu, 16 Dec 2021 17:11:33 +0100 Subject: [PATCH] settings for testing is added --- .vscode/settings.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..f345794a4 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,28 @@ +{ + "editor.rulers": [90], + "editor.renderWhitespace": "all", + "editor.tabSize": 4, + "[javascript]": { + "editor.tabSize": 2 + }, + "files.trimTrailingWhitespace": true, + "python.linting.pylintArgs": [ + "--load-plugins=pylint_mongoengine", + ], + "python.linting.pycodestylePath": "pycodestyle", + "python.linting.pycodestyleEnabled": true, + "python.linting.pycodestyleArgs": ["--ignore=E501,E701,E731"], + "python.linting.mypyEnabled": false, + "python.linting.mypyArgs": [ + "--ignore-missing-imports", + "--follow-imports=silent", + "--no-strict-optional" + ], + "python.linting.pylintEnabled": false, + "python.linting.enabled": true, + "python.testing.pytestArgs": [ + "tests" + ], + "python.testing.unittestEnabled": false, + "python.testing.pytestEnabled": true +} \ No newline at end of file