初始化项目 ::: code-group
[npm]
[Yarn]
[PNPM]
[bun]
不管用什么方式都可以安装, 不过要注意的是使用bun
安装需要先看下官网 Bun
举个例子:
项目名称为你的项目名字, 如: vue-project
选择项目类型为vue
选择TypeScript
进行开发, 其它的不用选择即可;
不用去默认选择Eslint
, 因为这里使用的是高版本的Eslint(9.0.0)
和默认安装的Eslint(8.x.x)
的语法有冲突;
代码规范 EditorConfig ::: tipEditorConfig
的作用是在多个编辑器和 IDE 之间维护一致的代码风格。 :::
如果使用Vscode
进行开发的话, 那就要安装EditorConfig for VS Code
插件, 然后在根目录下创建.editorconfig
文件, 内容如下:
1 2 3 4 5 6 7 8 9 10 11 # Editor configuration, see http://editorconfig.org # 表示是最顶层的 EditorConfig 配置文件 root = true [*] # 表示所有文件适用 charset = utf-8 # 设置文件字符集为 utf-8 indent_style = space # 缩进风格(tab | space) indent_size = 2 # 缩进大小 end_of_line = lf # 控制换行类型(lf | cr | crlf) trim_trailing_whitespace = true # 去除行首的任意空白字符 insert_final_newline = true # 始终在文件末尾插入一个新行 trim_trailing_whitespace = true # 删除一行中的前后空格
eslint ::: tip ESLint 是一个用于检测 JavaScript 代码问题的工具,帮我们发现并修复 JavaScript 代码中的问题。 :::
安装命令:pnpm create @eslint/config
1 2 3 4 5 6 7 √ How would you like to use ESLint? · (To check syntax and find problems) √ What type of modules does your project use? · (JavaScript modules (import/export)) √ Which framework does your project use? · (Vue.js) √ Does your project use TypeScript? · (Yes) √ Where does your code run? · (Browser) √ Would you like to install them now? (Yes) √ Which package manager do you want to use? (根据自己情况,本文使用pnpm)
此时根目录会自动成 eslint.config.js 文件, 内容如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 import globals from "globals" ;import pluginJs from "@eslint/js" ;import tseslint from "typescript-eslint" ;import pluginVue from "eslint-plugin-vue" ;export default [ { languageOptions : { globals : globals.browser } }, pluginJs.configs .recommended , ...tseslint.configs .recommended , ...pluginVue.configs ["flat/essential" ], ];
注意:此时我们安装的是 Eslint
的版本为:9.0.0, 这也是为什么不用默认脚手架安装的原因: 默认的eslint
版本为8.x.x
, 我们直接使用新版本9.0.0
,不过相对于8.X.X
写法上有很大变动,可以参考官方文档
接着配置.eslintrc.js
文件:
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 module .exports = { import globals from "globals" ; import pluginJs from "@eslint/js" ;import tseslint from "typescript-eslint" ;import pluginVue from "eslint-plugin-vue" ;export default [ { languageOptions : { globals : globals.browser } }, pluginJs.configs .recommended , ...tseslint.configs .recommended , ...pluginVue.configs ["flat/essential" ], languageOptions : { globals : { ...globals.browser , ...globals.es2020 , ...globals.node , }, ecmaVersion : 2020 , parserOptions : { parser : tseslint.parser , }, }, }, ];
Prettier ::: tip Prettier 是一个代码格式化工具,可以自动格式化代码,使其符合统一的风格。 :::
安装命令:pnpm add -D eslint-plugin-prettier eslint-config-prettier
修改eslint.config.js
添加prettier
配置
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 import globals from "globals" ;import pluginJs from "@eslint/js" ;import tseslint from "typescript-eslint" ;import pluginVue from "eslint-plugin-vue" ;import pluginPrettierRecommendedConfigs from "eslint-plugin-prettier/recommended" ;export default [ pluginJs.configs .recommended , ...tseslint.configs .recommended , ...pluginVue.configs ["flat/recommended" ], pluginPrettierRecommendedConfigs, { languageOptions : { globals : { ...globals.browser , ...globals.es2020 , ...globals.node , }, ecmaVersion : 2020 , parser : parserVue, parserOptions : { parser : tseslint.parser , }, }, }, ];
根目录下新建 prettier.config.js
添加如下配置:
1 2 3 4 5 6 7 8 9 10 11 export default { tabWidth : 2 , useTabs : true , semi : false , singleQuote : true , printWidth : 120 , arrowParens : "always" , bracketSpacing : true , endOfLine : "auto" , vueIndentScriptAndStyle : true , };
Eslint 可能出现的问题 当打开 components/HelloWorld.vue 文件,会发现此行报错:
1 defineProps<{ msg : string }>()
解决办法: 配置 vue-eslint-parser,修改 eslint.config.js
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 import globals from "globals" ;import pluginJs from "@eslint/js" ;import tseslint from "typescript-eslint" ;import pluginVue from "eslint-plugin-vue" ;import pluginPrettierRecommendedConfigs from "eslint-plugin-prettier/recommended" ;import parserVue from "vue-eslint-parser" ;export default [ pluginJs.configs .recommended , ...tseslint.configs .recommended , ...pluginVue.configs ["flat/recommended" ], pluginPrettierRecommendedConfigs, { languageOptions : { globals : { ...globals.browser , ...globals.es2020 , ...globals.node , }, ecmaVersion : 2020 , parser : parserVue, parserOptions : { parser : tseslint.parser , }, }, }, ];
添加插件 vite-plugin-eslintpnpm add -D vite-plugin-eslint
1 2 3 4 5 6 7 8 import { defineConfig } from "vite" ;import vue from "@vitejs/plugin-vue" ;import eslintPlugin from "vite-plugin-eslint" ;export default defineConfig ({ plugins : [vue (), eslintPlugin ()], });
由于 vite-plugin-eslint 库有点落后,导致 vite 高版本不能正确的识别 cjs 模块,所以配置 src\vite-env.d.ts:
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 declare module 'vite-plugin-eslint' { import { Plugin } from 'vite' import { ESLint } from 'eslint' interface Options extends ESLint .Options { eslintPath?: string lintOnStart?: boolean include?: string | string[] exclude?: string | string[] formatter?: string | ESLint .Formatter ['format' ] emitWarning?: boolean emitError?: boolean failOnWarning?: boolean failOnError?: boolean } const content : (rawOptions?: Options ) => Plugin export default content }
修改配置 tsconfig.json
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 { "compilerOptions" : { "target" : "ES2020" , "useDefineForClassFields" : true , "module" : "ESNext" , "lib" : [ "ES2020" , "DOM" , "DOM.Iterable" ] , "skipLibCheck" : true , "moduleResolution" : "bundler" , "allowImportingTsExtensions" : true , "resolveJsonModule" : true , "isolatedModules" : true , "noEmit" : true , "jsx" : "preserve" , "strict" : true , "noUnusedLocals" : true , "noUnusedParameters" : true , "noFallthroughCasesInSwitch" : true , "types" : [ "vite/client" ] } }
stylint ::: tip stylelint 是一个 CSS 语法检查工具,可以检测 CSS 代码的错误和风格问题。 :::
安装: pnpm add -D stylelint stylelint-config-html stylelint-config-prettier stylelint-config-standard stylelint-config-recess-order stylelint-config-recommended-scss stylelint-config-recommended-vue
1 2 3 4 5 6 7 stylelint 核心库 stylelint-config-html 解析 HTML 文件中的样式 stylelint-config-prettier 结合 Prettier 使用 stylelint-config-standard StyleLint 的标准可共享配置 stylelint-config-recess-order 提供优化样式顺序的配置 stylelint-config-recommended-scss 扩展 stylelint-config-recommended 共享配置并为 SCSS 配置其规则 stylelint-config-recommended-vue 扩展 stylelint-config-recommended 共享配置并为 Vue 配置其规则
根目录创建.stylelintrc.js 并配置:
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 export default { extends : [ "stylelint-config-standard" , "stylelint-config-recommended-scss" , "stylelint-config-recommended-vue/scss" , "stylelint-config-html/vue" , "stylelint-config-recess-order" , ], overrides : [ { files : ["**/*.{vue,html}" ], customSyntax : "postcss-html" , }, { files : ["**/*.{css,scss}" ], customSyntax : "postcss-scss" , }, ], rules : { "selector-pseudo-class-no-unknown" : [ true , { ignorePseudoClasses : ["global" , "export" , "v-deep" , "deep" ], }, ], }, };
根目录创建 .stylelintignore
文件,配置忽略文件如下:
1 2 3 4 5 dist node_modules public .husky .vscode
命令配置 配置根目录文件package.json
的配置:
1 2 3 4 5 6 7 8 "scripts" : { "dev" : "vite" , "build" : "vue-tsc && vite build" , "preview" : "vite preview" , "lint:eslint" : "eslint --fix" , "lint:format" : "prettier --write --log-level warn \"src/**/*.{js,ts,json,tsx,css,less,vue,html,md}\"" , "lint:stylelint" : "stylelint \"**/*.{css,scss,vue,html}\" --fix" } ,
代码检查和格式化命令
1 2 3 pnpm lint:eslint pnpm lint:format pnpm lint:stylelint
vscode 编译器保存自动化配置 修改根目录.vscode 文件夹下的settings.json
(没有的话新建一个):
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 { "files.eol" : "\n" , "eslint.format.enable" : true , "editor.codeLens" : true , "editor.tabSize" : 2 , "editor.detectIndentation" : false , "editor.defaultFormatter" : "esbenp.prettier-vscode" , "javascript.format.enable" : false , "typescript.format.enable" : false , "editor.formatOnSave" : true , "[html]" : { "editor.defaultFormatter" : "vscode.html-language-features" , "editor.formatOnSave" : true } , "[vue]" : { "editor.formatOnSave" : true , "editor.defaultFormatter" : "esbenp.prettier-vscode" } , "[javascript]" : { "editor.defaultFormatter" : "esbenp.prettier-vscode" } , "stylelint.validate" : [ "css" , "less" , "postcss" , "scss" , "sass" , "vue" ] , "editor.codeActionsOnSave" : { "source.fixAll" : "always" , "source.fixAll.stylelint" : "always" } , "[markdown]" : { "editor.defaultFormatter" : null , "editor.formatOnSave" : false } , "[json]" : { "editor.defaultFormatter" : "esbenp.prettier-vscode" } , "[typescript]" : { "editor.defaultFormatter" : "esbenp.prettier-vscode" } , "[scss]" : { "editor.defaultFormatter" : "stylelint.vscode-stylelint" } }
参考文献