22 lines
712 B
JSON
22 lines
712 B
JSON
{
|
|
"python.testing.unittestEnabled": false,
|
|
"python.testing.nosetestsEnabled": false,
|
|
"python.testing.pytestEnabled": true,
|
|
"python.linting.enabled": true,
|
|
"python.linting.flake8Enabled": true,
|
|
"python.linting.pylintEnabled": false,
|
|
"python.linting.mypyEnabled": false,
|
|
"python.linting.mypyArgs": ["--python-version", "3.8"],
|
|
"python.linting.flake8Args": ["--ignore=E501,E731", "--verbose"],
|
|
"python.autoComplete.addBrackets": true,
|
|
"files.associations": {
|
|
"*.jinja2": "html"
|
|
},
|
|
"[html]": {
|
|
"editor.defaultFormatter": "vscode.html-language-features",
|
|
"editor.tabSize": 2,
|
|
},
|
|
"python.analysis.completeFunctionParens": true,
|
|
"python.analysis.typeCheckingMode": "basic"
|
|
}
|