chore(xiaozhi): 更新配置文件

This commit is contained in:
Del Wang
2025-05-11 15:12:15 +08:00
parent 9a8e07a68e
commit 6eca122f24
4 changed files with 43 additions and 144 deletions
+23
View File
@@ -0,0 +1,23 @@
{
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.formatOnSave": true,
"python.languageServer": "Pylance",
"python.analysis.autoImportCompletions": true,
"ruff.organizeImports": true,
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
"source.fixAll": "explicit"
}
},
"files.exclude": {
"**/.git": true,
"**/node_modules": true,
"**/__pycache__": true,
"*.egg-info": true,
".venv": true,
".mypy_cache": true
}
}