| 12345678910111213141516171819202122 |
- {
- /* ========== TypeScript ========= */
- "typescript.tsdk": "node_modules/typescript/lib",
- "typescript.enablePromptUseWorkspaceTsdk": true,
- /* ========== 保存行为 ========= */
- "editor.formatOnSave": true,
- /* ========== 默认格式化器 ========= */
- "editor.defaultFormatter": "esbenp.prettier-vscode",
- /* ========== ESLint 参与格式化 ========= */
- "editor.codeActionsOnSave": {
- "source.fixAll.eslint": true
- },
- /* ========== ESLint 生效文件 ========= */
- "eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact", "vue"],
- /* ========== Prettier 配合 ESLint ========= */
- "prettier.requireConfig": true
- }
|