gtn/.vscode/settings.json

21 lines
746 B
JSON
Raw Normal View History

2023-10-23 10:14:28 +00:00
{
2023-10-28 00:42:01 +00:00
"explorer.excludeGitIgnore": true,
"files.exclude": {
".vscode": true,
2023-10-26 14:47:46 +00:00
},
2023-10-28 00:42:01 +00:00
"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.analysis.diagnosticSeverityOverrides": {
"reportPrivateUsage": "none"
},
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"pylint.args": [
"--disable=broad-exception-caught,protected-access,undefined-variable,import-error,unused-import,no-member",
2023-10-26 14:47:46 +00:00
],
2023-10-23 10:14:28 +00:00
}