Обновить Python/settings.json

This commit is contained in:
2025-10-28 13:33:27 +00:00
parent 69d14bc512
commit 80ff61b8c3

View File

@@ -38,6 +38,7 @@
"files.watcherExclude": {
"**/node_modules/**": true,
"**/.git/**": true,
"**/.github/**": true,
"**/.gitlab/**": true,
"**/.ci/**": true,
"**/venv/**": true,
@@ -46,14 +47,35 @@
"**/reports/**": true,
"**/.mypy_cache/**": true,
"**/.pytest_cache/**": true,
"**/.ruff_cache/**": true,
"**/.hypothesis/**": true,
"**/.coverage/**": true,
"**/dist/**": true,
"**/build/**": true,
"**/.ruff_cache/**": true,
"**/.hypothesis/**": true,
"**/docs/_build/**": true,
"**/target/**": true,
"**/.cargo/**": true,
"**/.cargo/**": true
},
"search.exclude": {
"**/node_modules/**": true,
"**/.git/**": true,
"**/.github/**": true,
"**/.gitlab/**": true,
"**/.ci/**": true,
"**/venv/**": true,
"**/.venv/**": true,
"**/__pycache__/**": true,
"**/reports/**": true,
"**/.mypy_cache/**": true,
"**/.pytest_cache/**": true,
"**/.ruff_cache/**": true,
"**/.hypothesis/**": true,
"**/.coverage/**": true,
"**/dist/**": true,
"**/build/**": true,
"**/docs/_build/**": true,
"**/target/**": true,
"**/.cargo/**": true
},
"editor.largeFileOptimizations": true,
"git.autorefresh": false,