ponguito/.vscode/settings.json

18 lines
626 B
JSON
Raw Normal View History

2023-12-28 18:34:38 +00:00
{
"explorer.excludeGitIgnore": true,
"files.exclude": {
".vscode": true,
},
"python.analysis.autoImportCompletions": true,
"python.analysis.autoFormatStrings": true,
"python.analysis.inlayHints.variableTypes": true,
"python.analysis.inlayHints.functionReturnTypes": true,
"python.analysis.inlayHints.pytestParameters": true,
"python.analysis.typeCheckingMode": "strict",
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"pylint.args": [
"--disable=protected-access,undefined-variable,import-error,unused-import,no-member",
],
}