123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- {
-
- "editor.defaultFormatter": "esbenp.prettier-vscode",
-
- "editor.formatOnSave": true,
-
- "editor.codeActionsOnSave": {
- "source.fixAll": "explicit",
- "source.fixAll.eslint": "explicit",
- "source.fixAll.stylelint": "explicit"
- },
-
- "stylelint.validate": ["css", "scss", "vue", "html"],
- "stylelint.enable": true,
- "css.validate": false,
- "less.validate": false,
- "scss.validate": false,
- "[shellscript]": {
- "editor.defaultFormatter": "foxundermoon.shell-format"
- },
- "[dotenv]": {
- "editor.defaultFormatter": "foxundermoon.shell-format"
- },
- "[vue]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "[typescript]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "[jsonc]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
-
- "files.associations": {
- "pages.json": "jsonc",
- "manifest.json": "jsonc"
- },
- "cSpell.words": [
- "climblee",
- "commitlint",
- "dcloudio",
- "iconfont",
- "qrcode",
- "refresherrefresh",
- "scrolltolower",
- "tabbar",
- "unibest",
- "uvui",
- "WechatMiniprogram"
- ],
- "typescript.tsdk": "node_modules\\typescript\\lib",
-
- "explorer.fileNesting.enabled": true,
- "explorer.fileNesting.expand": false,
- "explorer.fileNesting.patterns": {
- "*.ts": "$(capture).test.ts, $(capture).test.tsx",
- "*.tsx": "$(capture).test.ts, $(capture).test.tsx",
-
- "CHANGELOG.md": "CHANGELOG*",
- "package.json": "pnpm-lock.yaml,pnpm-workspace.yaml,LICENSE,.gitattributes,.gitignore,.gitpod.yml,CNAME,.npmrc,.browserslistrc",
- ".eslintrc.cjs": ".eslintignore,.prettierignore,.stylelintignore,.commitlintrc.*,.prettierrc.*,.stylelintrc.*,.eslintrc-auto-import.json,.editorconfig,.commitlint.cjs"
- }
- }
|