Files
hasaddon/hassio-google-drive-backup/.vscode/settings.json
T
2023-07-30 21:04:44 +07:00

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"
}