gtn/.vscode/settings.json
2023-10-30 17:30:56 +01:00

18 lines
626 B
JSON

{
"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",
],
}