Extra: tipagem, linters e settings.json do VS Code

This commit is contained in:
Luiz Otávio
2022-12-01 10:10:25 -03:00
parent ed6137331b
commit 62d3de84a6
3 changed files with 17 additions and 12 deletions

10
.vscode/settings.json vendored
View File

@@ -22,7 +22,7 @@
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.fixAll.unusedImports": false,
"source.fixAll.unusedImports": true,
"source.organizeImports": true
}
},
@@ -35,12 +35,12 @@
"python.linting.flake8Args": [
// "--ignore=E111",
],
"python.linting.flake8Enabled": false,
"python.linting.mypyEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.mypyEnabled": true,
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": false,
"python.testing.pytestEnabled": true,
"python.analysis.diagnosticSeverityOverrides": {},
// "python.defaultInterpreterPath": "./venv/bin/python",
"python.analysis.typeCheckingMode": "off",
"python.analysis.typeCheckingMode": "basic",
"cSpell.enabled": false
}