- Changed component names from kebab-case to PascalCase in various files for consistency. - Updated `<router-view>` and `<transition>` to `<RouterView>` and `<Transition>` respectively in App.vue and base-layout.vue. - Refactored AppNaiveUIProvider.vue to use PascalCase for Naive UI providers. - Adjusted language and theme switch buttons to use PascalCase for icon components. - Updated button components in demo pages to use PascalCase for Naive UI buttons. - Modified ESLint rules in route message files to use perfectionist/sort-objects for better key sorting. - Enhanced Vite plugin files to export loadPlugin functions for better plugin management. - Improved plugin loading logic to handle errors and warnings more effectively.
63 lines
2.3 KiB
JSON
63 lines
2.3 KiB
JSON
{
|
||
"typescript.tsdk": "node_modules/typescript/lib",
|
||
"typescript.preferences.autoImportFileExcludePatterns": [
|
||
"vue-router$",
|
||
"**/src/composables/**",
|
||
"**/*-auto-imports.ts",
|
||
"**/*-auto-imports.types.ts"
|
||
],
|
||
"search.exclude": {
|
||
"public/report-ui-dist": true
|
||
},
|
||
|
||
// ============================================================
|
||
// 代码格式化相关配置
|
||
// ============================================================
|
||
"prettier.enable": true,
|
||
"eslint.enable": true,
|
||
"oxc.enable": true,
|
||
"stylelint.enable": true,
|
||
"editor.formatOnSave": true,
|
||
"editor.codeActionsOnSave": {
|
||
"source.fixAll": "explicit",
|
||
"source.fixAll.eslint": "explicit",
|
||
"source.fixAll.oxc": "explicit",
|
||
"source.fixAll.stylelint": "explicit",
|
||
"source.organizeImports": "explicit"
|
||
},
|
||
"stylelint.validate": ["css", "less", "postcss", "scss", "vue"],
|
||
"scss.lint.unknownAtRules": "ignore",
|
||
"css.lint.unknownAtRules": "ignore",
|
||
"less.lint.unknownAtRules": "ignore",
|
||
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
||
"[typescript]": {
|
||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||
},
|
||
"[vue]": {
|
||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||
},
|
||
"[json]": {
|
||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||
},
|
||
"[jsonc]": {
|
||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||
},
|
||
|
||
// ============================================================
|
||
// i18n-ally 配置
|
||
// ============================================================
|
||
// >>>>>
|
||
"i18n-ally.readonly": false,
|
||
"i18n-ally.namespace": false /* 禁用命名空间(@intlify/unplugin-vue-i18n不支持吧?) */,
|
||
"i18n-ally.localesPaths": ["src/locales/demo", "src/locales"],
|
||
// https://github.com/lokalise/i18n-ally/wiki/Path-Matcher
|
||
// 默认: 🗃 Path Matcher Regex: /^(?<locale>[\w-_]+)(?:.*\/|^).*\.(?<ext>json|ya?ml|json5)$/
|
||
"i18n-ally.pathMatcher": "{locale}.json",
|
||
"i18n-ally.enabledParsers": ["json"],
|
||
"i18n-ally.keystyle": "nested",
|
||
"i18n-ally.sourceLanguage": "zh-CN", // 翻译源语言 (源文件) 根据此语言文件翻译其他语言文件的变量和内容
|
||
"i18n-ally.displayLanguage": "zh-CN" // 显示语言 (显示文件/翻译文件)
|
||
// <<<<<
|
||
// "iconify.customCollectionJsonPaths": ["https://example.com/my-icons.json", "./local/icons.json"],
|
||
}
|