vscode: Add settings for python linting & testing

master
Felix Stupp 11 months ago
parent 6c5ca895f0
commit 4779d7ba7f
Signed by: zocker
GPG Key ID: 93E1BD26F6B02FB7

@ -0,0 +1,21 @@
{
"python.analysis.typeCheckingMode": "off",
"python.linting.enabled": false,
"python.linting.mypyArgs": [
"--follow-imports=silent",
"--ignore-missing-imports",
"--show-column-numbers",
"--no-pretty",
"--warn-return-any",
"--disallow-untyped-calls",
"--disallow-untyped-defs",
"--disallow-incomplete-defs",
"--no-implicit-optional",
],
"python.linting.mypyEnabled": false,
"python.testing.pytestArgs": [
"tests",
],
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false,
}
Loading…
Cancel
Save