vscode: Add settings for python linting & testing
parent
6c5ca895f0
commit
4779d7ba7f
@ -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…
Reference in New Issue