gtn/.vscode/settings.json

18 lines
626 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]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"pylint.args": [
2023-10-30 16:30:56 +00:00
"--disable=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
}