Remover regras de tipos Unknown do linter do VS Code
This commit is contained in:
10
.vscode/settings.json
vendored
10
.vscode/settings.json
vendored
@@ -40,8 +40,14 @@
|
|||||||
"python.linting.mypyEnabled": true,
|
"python.linting.mypyEnabled": true,
|
||||||
"python.testing.unittestEnabled": false,
|
"python.testing.unittestEnabled": false,
|
||||||
"python.testing.pytestEnabled": true,
|
"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.defaultInterpreterPath": "./venv/bin/python",
|
||||||
"python.analysis.typeCheckingMode": "strict",
|
"python.analysis.typeCheckingMode": "basic",
|
||||||
"cSpell.enabled": true
|
"cSpell.enabled": true
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user