Files
shenzhen-solitaire/.vscode/settings.json
2020-06-18 05:10:31 +02:00

20 lines
500 B
JSON

{
"python.testing.unittestArgs": [
"-v",
"-s",
".",
"-p",
"test_*.py"
],
"python.testing.pytestEnabled": false,
"python.testing.nosetestsEnabled": false,
"python.testing.unittestEnabled": true,
"python.linting.mypyArgs": [
"--ignore-missing-imports",
"--follow-imports=silent",
"--show-column-numbers",
"--strict"
],
"python.linting.mypyEnabled": true,
"python.formatting.provider": "black"
}