1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
| { "beautify.language": { "js": { "type": [ "javascript", "json", "jsonc" ], "filename": [ ".jshintrc", ".jsbeautifyrc" ] }, "css": [ "css", "less", "scss" ], "html": [ "htm", "html", "vue" ] }, "workbench.colorTheme": "Dracula At Night", "workbench.iconTheme": "vscode-icons", "vsicons.dontShowNewVersionMessage": true, "[vue]": { "editor.defaultFormatter": "octref.vetur", "editor.codeActionsOnSave": { "source.fixAll.eslint": "explicit" } }, "[javascript]": { "editor.defaultFormatter": "octref.vetur", "editor.codeActionsOnSave": { "source.fixAll.eslint": true } }, "[html]": { "editor.defaultFormatter": "HookyQR.beautify" }, "eslint.codeAction.showDocumentation": { "enable": true }, "workbench.iconTheme": "material-icon-theme", "explorer.confirmDragAndDrop": false, "explorer.confirmDelete": false, "eslint.enable": true, "eslint.validate": [ "javascript", { "language": "vue", "autoFix": true }, { "language": "html", "autoFix": true }, ], "cSpell.enabledLanguageIds": [ "asciidoc", "c", "cpp", "csharp", "css", "git-commit", "go", "graphql", "handlebars", "haskell", "html", "jade", "java", "javascript", "javascriptreact", "json", "jsonc", "jupyter", "latex", "less", "markdown", "php", "plaintext", "python", "pug", "restructuredtext", "rust", "scala", "scss", "text", "typescript", "typescriptreact", "yaml", "yml", "vue" ], "diffEditor.ignoreTrimWhitespace": false, "alias-skip.mappings": { "~@/": "/src", "views": "/src/views", "assets": "/src/assets", "network": "/src/network", "common": "/src/common" }, "tabnine.experimentalAutoImports": true, "editor.bracketPairColorization.enabled": true, "editor.guides.bracketPairs": "active", "bracketPairColorizer.depreciation-notice": false, "editor.tabSize": 2, "editor.detectIndentation": false, "cSpell.customDictionaries": { "custom-dictionary-user": { "name": "custom-dictionary-user", "path": "~/.cspell/custom-dictionary-user.txt", "addWords": true, "scope": "user" } }, "editor.foldingStrategy": "indentation", "git.mergeEditor": false, "[css]": { "editor.defaultFormatter": "stylelint.vscode-stylelint" }, "remote.SSH.remotePlatform": { "192.168.10.31": "linux" }, "cSpell.languageSettings": [], "vetur.ignoreProjectWarning": true, "settingsSync.keybindingsPerPlatform": false, "eslint.migration.2_x": "off", "eslint.autoFixOnSave": true, "eslint.codeActionsOnSave.rules": null, "editor.codeActionsOnSave": { "source.fixAll.eslint": "never" }, "editor.fontLigatures": null, "pathAlias.aliasMap": { "@": "${cwd}/src" }, "editor.formatOnSave": true, "vetur.format.defaultFormatter.js": "vscode-typescript", "vetur.format.defaultFormatter.html": "js-beautify-html", "javascript.format.insertSpaceBeforeFunctionParenthesis": false, "vetur.format.defaultFormatterOptions": { "prettier": { "semi": true, "singleQuote": true, "trailingComma": "none" } }, "[javascript]": { "editor.formatOnSave": true }, "[html]": { "editor.formatOnSave": false }, "files.associations": { "*.cjson": "jsonc", "*.wxss": "css", "*.wxs": "javascript" }, "emmet.includeLanguages": { "wxml": "html" }, "minapp-vscode.disableAutoConfig": true, "Codegeex.Privacy": false, "files.autoSave": "off", "window.zoomLevel": 1, "editor.accessibilitySupport": "off", "git.confirmSync": false }
|