gtn/.vscode/settings.json

17 lines
448 B
JSON

{
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"files.exclude": {
".venv": true,
".vscode": true,
"python": true,
"mypy.ini": true,
".pylintrc": true,
},
"explorer.excludeGitIgnore": true,
"mypy.dmypyExecutable": "${workspaceFolder}/.venv/Scripts/dmypy.exe",
"pylint.interpreter": [
"${workspaceFolder}/.venv/Scripts/python.exe"
],
}