This commit is contained in:
2025-10-27 23:18:23 +03:00
parent 13b29a3c18
commit 58a97ab6dc
2 changed files with 66 additions and 0 deletions

65
Rust/settings.json Normal file
View File

@@ -0,0 +1,65 @@
{ //----------------------------------------------------------------------------------------------------------------------------------------------------------
// ----------------------- Настройки VScode(Начало)
"files.exclude": {
".ci": true,
".git*": true,
".gitlab": true,
".mypy_cache": true,
".pytest_cache": true,
".ruff_cache": true,
".vscode": true,
"**/__pycache__": true
},
"files.autoSave": "afterDelay",
"python.REPL.sendToNativeREPL": true,
"workbench.settings.enableNaturalLanguageSearch": false,
"extensions.closeExtensionDetailsOnViewChange": true,
"github.gitAuthentication": false,
"extensions.ignoreRecommendations": true,
"chat.disableAIFeatures": true,
// ----------------------- Настройки VScode(Конец)
//----------------------------------------------------------------------------------------------------------------------------------------------------------
// ----------------------- Оформление рабочего пространства (Начало)
"workbench.iconTheme": "vscode-icons",
"background.fullscreen": {
"images": ["https://trafaret-decor.art/sites/default/files/2022-12/Фон%20горы%20%2874%29.jpg"],
"opacity": 0.13,
"size": "cover",
"position": "center",
"interval": 0,
"random": false
},
"workbench.colorTheme": "GitHub Dark Colorblind (Beta)",
"editor.defaultFormatter": "rust-lang.rust-analyzer",
"editor.fontSize": 15,
"editor.formatOnSave": true,
"window.commandCenter": false,
"workbench.layoutControl.enabled": false,
"editor.minimap.enabled": false,
"workbench.reduceMotion": "on",
"terminal.integrated.fontSize": 15,
"editor.smoothScrolling": true,
"window.zoomLevel": 0.5,
// ----------------------- Оформление рабочего пространства (Конец)
//----------------------------------------------------------------------------------------------------------------------------------------------------------
// ----------------------- Разные расширения (Начало)
"mypy.runUsingActiveInterpreter": true,
"ruff.nativeServer": "on",
"ruff.configuration": "./pyproject.toml",
"sourcecraft-code-assist.allowedCommands": [
"npm test",
"npm install",
"tsc",
"git log",
"git diff",
"git show",
"poetry",
"ls"
],
"sourcecraft-code-assist.deniedCommands": [],
"mypy.dmypyExecutable": "../.venv/bin/dmypy",
"chat.commandCenter.enabled": false,
"explorer.confirmDelete": false,
// ----------------------- Разные расширения (Конец)
//----------------------------------------------------------------------------------------------------------------------------------------------------------
}