123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- {
- "files.eol": "\n",
- "files.autoSave": "off",
- "files.readonlyInclude": {
- ".husky/**/*": true,
- "dist/**/*": true,
- "node_modules/**/*": true,
- "pnpm-lock.yaml": true
- },
- "search.exclude": {
- "dist/**/*": true
- },
- "editor.tabSize": 2,
- "editor.formatOnSave": true,
- "editor.defaultFormatter": "esbenp.prettier-vscode",
- "editor.codeActionsOnSave": {
- "source.fixAll.eslint": "explicit",
- "source.fixAll.stylelint": "explicit"
- },
- "explorer.fileNesting.enabled": true,
- "explorer.fileNesting.patterns": {
- "tsconfig.json": "tsconfig.*.json, env.d.ts",
- "vite.config.*": "jsconfig*, uno.config.*, vitest.config.*, cypress.config.*, playwright.config.*",
- "package.json": "package-lock.json, pnpm*, .yarnrc*, yarn*, .eslint*, eslint*, .stylelint*, .prettier*, prettier*, .editorconfig, .lintstaged*, .commitlint*"
- },
- "extensions.ignoreRecommendations": false,
- "eslint.validate": ["json"],
- "stylelint.validate": ["scss", "vue"],
- "scss.validate": false,
- "cssvar.files": ["src/styles/**/*.scss", "node_modules/element-plus/theme-chalk/el-var.css"],
- "cssvar.ignore": ["**/node_modules", "**/dist"],
- "i18n-ally.localesPaths": "src/i18n/locales",
- "i18n-ally.sourceLanguage": "zh",
- "i18n-ally.displayLanguage": "zh",
- "i18n-ally.keystyle": "nested",
- "i18n-ally.sortKeys": true,
- "i18n-ally.keepFulfilled": true,
- "vue.codeActions.enabled": false,
- "path-intellisense.mappings": {
- "@": "${workspaceFolder}/src"
- },
- "typescript.tsdk": "node_modules/typescript/lib",
- "GitCommitPlugin.ShowEmoji": false,
- "GitCommitPlugin.MaxSubjectCharacters": 60
- }
|