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

This commit is contained in:
2025-10-28 06:40:48 +00:00
parent 0b1c50d58d
commit 2e45392c24

View File

@@ -1,4 +1,4 @@
{ //---------------------------------------------------------------------------------------------------------------------------------------------------------- { //----------------------------------------------------------------------------------------------------------------------------------------------------------
// ----------------------- Настройки VScode(Начало) // ----------------------- Настройки VScode(Начало)
"files.exclude": { "files.exclude": {
".ci": true, ".ci": true,
@@ -18,12 +18,12 @@
"extensions.ignoreRecommendations": true, "extensions.ignoreRecommendations": true,
"chat.disableAIFeatures": true, "chat.disableAIFeatures": true,
"files.watcherExclude": { "files.watcherExclude": {
"**/node_modules/**": true, "**/node_modules/**": true,
"**/.git/**": true, "**/.git/**": true,
"**/.gitlab/**": true, "**/.gitlab/**": true,
"**/.ci/**": true, "**/.ci/**": true,
"**/venv/**": true, "**/venv/**": true,
"**/__pycache__/**": true, "**/__pycache__/**": true,
}, },
"editor.largeFileOptimizations": true, "editor.largeFileOptimizations": true,
"git.autorefresh": false, "git.autorefresh": false,
@@ -38,7 +38,9 @@
// ----------------------- Оформление рабочего пространства (Начало) // ----------------------- Оформление рабочего пространства (Начало)
"workbench.iconTheme": "vscode-icons", "workbench.iconTheme": "vscode-icons",
"background.fullscreen": { "background.fullscreen": {
"images": ["https://trafaret-decor.art/sites/default/files/2022-12/Фон%20горы%20%2874%29.jpg"], "images": [
"https://trafaret-decor.art/sites/default/files/2022-12/Фон%20горы%20%2874%29.jpg"
],
"opacity": 0.13, "opacity": 0.13,
"size": "cover", "size": "cover",
"position": "center", "position": "center",
@@ -46,7 +48,6 @@
"random": false "random": false
}, },
"workbench.colorTheme": "GitHub Dark Colorblind (Beta)", "workbench.colorTheme": "GitHub Dark Colorblind (Beta)",
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.fontSize": 13, "editor.fontSize": 13,
"window.commandCenter": false, "window.commandCenter": false,
"workbench.layoutControl.enabled": false, "workbench.layoutControl.enabled": false,
@@ -69,10 +70,19 @@
"git diff", "git diff",
"git show", "git show",
"poetry", "poetry",
"ls" "ls",
], ],
"sourcecraft-code-assist.deniedCommands": [], "sourcecraft-code-assist.deniedCommands": [],
"mypy.dmypyExecutable": "../.venv/bin/dmypy", "mypy.dmypyExecutable": "../.venv/bin/dmypy",
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer"
},
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff"
},
// ----------------------- Разные расширения (Конец) // ----------------------- Разные расширения (Конец)
//---------------------------------------------------------------------------------------------------------------------------------------------------------- //----------------------------------------------------------------------------------------------------------------------------------------------------------
} }