|
8 | 8 | ".eslintrc.js": ".eslintignore", |
9 | 9 | ".editorconfig": ".prettierrc.cjs" |
10 | 10 | }, |
11 | | - "i18n-ally.localesPaths": [ |
12 | | - "src/i18n" |
13 | | - ] |
| 11 | + "i18n-ally.localesPaths": ["src/i18n"], |
| 12 | + "[scss]": { |
| 13 | + "editor.defaultFormatter": "esbenp.prettier-vscode" |
| 14 | + }, |
| 15 | + "[jsonc]": { |
| 16 | + "editor.defaultFormatter": "esbenp.prettier-vscode" |
| 17 | + }, |
| 18 | + "[javascript]": { |
| 19 | + "editor.defaultFormatter": "esbenp.prettier-vscode" |
| 20 | + }, |
| 21 | + "[html]": { |
| 22 | + "editor.defaultFormatter": "esbenp.prettier-vscode" |
| 23 | + }, |
| 24 | + "[typescript]": { |
| 25 | + "editor.defaultFormatter": "esbenp.prettier-vscode" |
| 26 | + }, |
| 27 | + "[json]": { |
| 28 | + "editor.defaultFormatter": "esbenp.prettier-vscode" |
| 29 | + }, |
| 30 | + "[vue]": { |
| 31 | + "editor.defaultFormatter": "esbenp.prettier-vscode" |
| 32 | + }, |
| 33 | + "[css]": { |
| 34 | + "editor.defaultFormatter": "esbenp.prettier-vscode" |
| 35 | + }, |
| 36 | + "eslint.options": { |
| 37 | + "extensions": [".js", ".vue", ".ts", ".tsx"] |
| 38 | + }, |
| 39 | + "eslint.validate": ["vue", "html", "javascript", "graphql", "javascriptreact", "json", "typescript", "typescriptreact", "vue-html"], |
| 40 | + "eslint.format.enable": true, |
| 41 | + "editor.codeActionsOnSave": { |
| 42 | + "source.fixAll.eslint": "always" |
| 43 | + }, |
| 44 | + "files.associations": { |
| 45 | + "*.cjson": "jsonc", |
| 46 | + "*.wxss": "css", |
| 47 | + "*.wxs": "javascript", |
| 48 | + "*.nvue": "vue", |
| 49 | + "*.ejs": "" |
| 50 | + }, |
| 51 | + "editor.formatOnSave": true, |
| 52 | + "editor.tabSize": 2, |
| 53 | + "editor.formatOnType": true, |
| 54 | + "js/ts.format.enable": false, |
| 55 | + "search.followSymlinks": false, |
| 56 | + "backgroundCover.opacity": 0.5, |
| 57 | + "js/ts.updateImportsOnFileMove.enabled": "always", |
| 58 | + "[markdown]": { |
| 59 | + "editor.defaultFormatter": "esbenp.prettier-vscode" |
| 60 | + }, |
| 61 | + "markdownlint.config": { |
| 62 | + "default": true, |
| 63 | + "no-hard-tabs": false, |
| 64 | + "no-inline-html": false, |
| 65 | + "first-line-heading": false, |
| 66 | + "heading-increment": false, |
| 67 | + "no-bare-urls": false |
| 68 | + }, |
| 69 | + "editor.minimap.enabled": false, |
| 70 | + "diffEditor.ignoreTrimWhitespace": false, |
| 71 | + "explorer.confirmDelete": false, |
| 72 | + "editor.quickSuggestions": { |
| 73 | + "strings": true, |
| 74 | + "comments": true, |
| 75 | + "other": true |
| 76 | + }, |
| 77 | + "html-css-class-completion.includeGlobPattern": "src/theme/**/*.{css,scss,sass,html}", |
| 78 | + "path-intellisense.mappings": { |
| 79 | + "/@": "${workspaceRoot}/src" |
| 80 | + }, |
| 81 | + "markdown-preview-enhanced.previewTheme": "vue.css", |
| 82 | + "chatgpt.lang": "cn", |
| 83 | + "chatgpt.temperature": 0.9, |
| 84 | + "git.confirmSync": false, |
| 85 | + "fileheader.Author": "xiaoxue", |
| 86 | + "fileheader.LastModifiedBy": "xiaoxue", |
| 87 | + "security.workspace.trust.untrustedFiles": "open" |
14 | 88 | } |
0 commit comments