Remover regras de tipos Unknown do linter do VS Code

This commit is contained in:
Luiz Otávio
2023-02-18 20:00:40 -03:00
parent 6fc66d9c16
commit 97f87e371a

10
.vscode/settings.json vendored
View File

@@ -40,8 +40,14 @@
"python.linting.mypyEnabled": true,
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.analysis.diagnosticSeverityOverrides": {},
"python.analysis.diagnosticSeverityOverrides": {
"reportUnknownMemberType": "none",
"reportUnknownArgumentType": "none",
"reportUnknownVariableType": "none",
"reportUnknownLambdaType": "none",
"reportUnknownParameterType": "none"
},
// "python.defaultInterpreterPath": "./venv/bin/python",
"python.analysis.typeCheckingMode": "strict",
"python.analysis.typeCheckingMode": "basic",
"cSpell.enabled": true
}