|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- {
- "i18n-ally.localesPaths": ["locales"],
- "i18n-ally.keystyle": "nested",
- "i18n-ally.sourceLanguage": "zh-CN",
- "css.lint.unknownAtRules": "ignore",
- // 开启 eslint
- "eslint.enable": true,
- // 开启 prettier
- "prettier.enable": true,
- "editor.linkedEditing": true,
- // 开启 eslint 作为格式化工具
- "eslint.format.enable": true,
- // 包管理器 pnpm
- "eslint.packageManager": "pnpm",
- // 默认格式化选择 prettier,
- "editor.defaultFormatter": "dbaeumer.vscode-eslint",
- "[json]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "[jsonc]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "[vue]": {
- "editor.defaultFormatter": "Vue.volar"
- },
- "[css]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "[typescript]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "[javascript]": {
- "editor.defaultFormatter": "dbaeumer.vscode-eslint"
- },
- "[yaml]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "explorer.fileNesting.enabled": true,
- "explorer.fileNesting.expand": false,
- "explorer.fileNesting.patterns": {
- "*.component.ts": "$(capture).component.html, $(capture).component.spec.ts, $(capture).component.css, $(capture).component.scss, $(capture).component.sass, $(capture).component.less",
- "*.css": "$(capture).css.map, $(capture).*.css",
- "*.js": "$(capture).js.map, $(capture).*.js",
- "*.jsx": "$(capture).js, $(capture).*.jsx",
- "*.module.ts": "$(capture).resolver.ts, $(capture).controller.ts, $(capture).service.ts",
- "*.ts": "$(capture).js, $(capture).*.ts",
- "*.tsx": "$(capture).ts, $(capture).*.tsx",
- "*.vue": "$(capture).*.ts, $(capture).*.js",
- ".env": "*.env, .env.*, .envrc, env.d.ts",
- "package.json": ".browserslist*, .circleci*, .codecov, .commitlint*, .cz-config.js, .czrc, .editorconfig, .eslint*, .firebase*, .flowconfig, .github*, .gitlab*, .gitpod*, .huskyrc*, .jslint*, .lighthouserc.*, .lintstagedrc*, .markdownlint*, .mocha*, .node-version, .nodemon*, .npm*, .nvmrc, .pm2*, .pnp.*, .pnpm*, .prettier*, .releaserc*, .sentry*, .stackblitz*, .styleci*, .stylelint*, .tazerc*, .textlint*, .tool-versions, .travis*, .versionrc*, .vscode*, .watchman*, .xo-config*, .yamllint*, .yarnrc*, Procfile, api-extractor.json, apollo.config.*, appveyor*, ava.config.*, azure-pipelines*, bower.json, build.config.*, commitlint*, crowdin*, cypress.json, dangerfile*, dprint.json, firebase.json, grunt*, gulp*, jasmine.*, jenkins*, jest.config.*, jsconfig.*, karma*, lerna*, lighthouserc.*, lint-staged*, nest-cli.*, netlify*, nodemon*, nx.*, package-lock.json, phpcs.xml, playwright.config.*, pm2.*, pnpm*, prettier*, pullapprove*, puppeteer.config.*, pyrightconfig.json, renovate*, rollup.config.*, stylelint*, tsconfig.*, tsdoc.*, tslint*, tsup.config.*, turbo*, typedoc*, vercel*, vetur.config.*, vitest.config.*, webpack.config.*, workspace.json, xo.config.*, yarn*",
- "readme*": "authors, backers.md, changelog*, citation*, code_of_conduct.md, codeowners, contributing.md, contributors, copying, credits, governance.md, history.md, license*, maintainers, readme*, security.md, sponsors.md",
- "vite.config.*": "*.env, .babelrc*, .codecov, .cssnanorc*, .env.*, .envrc, .htmlnanorc*, .lighthouserc.*, .mocha*, .postcssrc*, .terserrc*, api-extractor.json, ava.config.*, babel.config.*, cssnano.config.*, cypress.json, env.d.ts, htmlnanorc.*, jasmine.*, jest.config.*, jsconfig.*, karma*, lighthouserc.*, playwright.config.*, postcss.config.*, puppeteer.config.*, svgo.config.*, tailwind.config.*, tsconfig.*, tsdoc.*, unocss.config.*, vitest.config.*, webpack.config.*, windi.config.*"
- }
- }
|