gtn/.vscode/settings.json

17 lines
448 B
JSON
Raw Normal View History

2023-10-23 10:14:28 +00:00
{
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"files.exclude": {
".venv": true,
".vscode": true,
"python": true,
"mypy.ini": true,
".pylintrc": true,
2023-10-26 14:47:46 +00:00
},
"explorer.excludeGitIgnore": true,
"mypy.dmypyExecutable": "${workspaceFolder}/.venv/Scripts/dmypy.exe",
"pylint.interpreter": [
"${workspaceFolder}/.venv/Scripts/python.exe"
],
2023-10-23 10:14:28 +00:00
}