Files
gt-agent-company/.vscode/settings.json
sexygoat 3c62cc1cd1 first
2026-03-31 18:41:52 +08:00

37 lines
774 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
// 禁用 prettier使用 eslint 的代码格式化
"prettier.enable": false,
// 保存时自动格式化
"editor.formatOnSave": false,
// 保存时自动修复
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.organizeImports": "never"
},
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue",
"html",
"markdown",
"json",
"jsonc",
"yaml"
],
// 消除json文件中的注释警告
"files.associations": {
"manifest.json": "jsonc",
"pages.json": "jsonc"
},
// 消除Unknown at rule @apply警告
"css.customData": [
".vscode/unocss.json"
],
"i18n-ally.localesPaths": [
"src/locales",
"src/locales/langs"
]
}