123456789101112131415161718192021222324 |
- {
- "typescript.tsdk": "./node_modules/typescript/lib",
- "eslint.validate": [
- "javascript",
- "typescript",
- "javascriptreact"
- ],
- "volar.tsPlugin": true,
- "volar.tsPluginStatus": false,
- "editor.tabSize": 2,
- "eslint.format.enable": true,
- "files.eol": "\n",
- "path-intellisense.mappings": {
- "@/": "${workspaceRoot}/src"
- },
- "editor.codeActionsOnSave": {
- "source.fixAll.eslint": true,
- },
- "[vue]": {
- "editor.codeActionsOnSave": {
- "source.fixAll.eslint": false
- }
- },
- }
|