VScode中配置ESlint+Prettier详细步骤(图文详情)
VScode中配置ESlint+Prettier详细步骤(图文详情)
ESlint和Prettier是前端开发中常用的代码质量和格式化工具。ESlint用于代码风格检查和静态分析,帮助开发者发现潜在的错误和不规范的代码;Prettier则是一个代码格式化工具,帮助保持代码风格的一致性。本文将详细介绍如何在VScode中配置ESlint和Prettier,以提升代码质量和开发效率。
前置环境
- node 18.19.0
- vite 3.2.11
- vue 3.2.47
注意:本文将不在演示vue3基础工程创建,如果还没有vue3项目工程,请参考相关文章。
ESLint和Prettier版本
- ESLint 8.57.1
- Prettier 3.2.5
1. EditorConfig设置
什么是.editorconfig
?
.editorconfig
是一个跨编辑器和IDE的文件格式,旨在帮助开发者定义和维护一致的代码格式规则。它由EditorConfig项目维护,并得到了广泛的支持,包括Visual Studio Code、Sublime Text、Atom、IntelliJ IDEA等许多流行的编辑器和IDE。
.editorconfig
文件是一种用于定义和维护代码格式一致性的配置文件。它可以帮助开发者确保在不同编辑器和IDE中,代码的缩进、换行符、字符编码等格式保持一致。通过使用.editorconfig
文件,团队成员可以在不同的操作系统和开发环境中工作,而不必担心代码风格的不一致性。
配置步骤
打开VScode,在项目根目录新建.editorconfig
文件并添加如下代码:
# 告诉EditorConfig插件,这是根文件,不用继续往上查找
root = true
# 匹配全部文件
[*]
# 缩进风格,可选space、tab
indent_style = space
# 缩进的空格数
indent_size = 2
# 设置字符集
charset = utf-8
# 结尾换行符,可选lf、cr、crlf
end_of_line = lf
# 在文件结尾插入新行
trim_trailing_whitespace = true
# 删除一行中的前后空格
insert_final_newline = true
[*.md]
insert_final_newline = false
trim_trailing_whitespace = false
2. ESLint与Prettier设置
2.1 安装依赖包和插件
打开VScode搜索ESLint和Prettier插件进行安装(安装完毕后需重启VScode)
ESLint插件
用于代码风格检查和静态分析。
与Vue 3的ESLint插件一起使用,确保符合Vue 3的规范。
Prettier插件
代码格式化工具,帮助保持代码风格的一致性。
与Vue 3的Prettier插件一起使用,确保与Vue 3的风格一致。
注意:在ESLint的9.0版本之后变化较大,请注意和Prettier版本使用搭配!
使用终端打开项目根目录执行安装:
npm install eslint@8.57.1 --save-dev
npm install prettier@3.2.5 --save-dev
npm i -D eslint-plugin-prettier @vue/eslint-config-prettier eslint-plugin-vue
2.2 Prettier设置
1. Prettier配置文件
在VScode的项目工程根目录下新建配置文件.prettierrc
和.prettierignore
.prettierrc
文件(用于prettier格式化规则设置,可根据自身需要修改)
{
"printWidth": 120,
"tabWidth": 2,
"useTabs": true,
"semi": true,
"singleQuote": false,
"quoteProps": "as-needed",
"trailingComma": "none",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "avoid",
"endOfLine": "auto",
"jsxSingleQuote": false,
"vueIndentScriptAndStyle": true
}
文件释义
{
"printWidth": 220, // 此设置定义了每行代码的最大字符数。若代码行超出此长度,格式化工具会尝试将其拆分为多行。
"tabWidth": 2, // 此设置指定一个制表符(tab)的宽度,即它等同于多少个空格。这有助于确保代码缩进的一致性。
"useTabs": true, // 此设置决定是否使用制表符进行缩进。若设为true,则使用制表符;反之,则使用空格。
"semi": true, // 此设置决定是否在语句末尾添加分号。若设为false,则不添加。
"singleQuote": false, // 此设置决定是否优先使用单引号。若设为true,则字符串默认使用单引号。
"quoteProps": "as-needed", // 此设置定义对象属性是否添加引号。设为"as-needed"时,仅在属性名不是有效标识符时添加引号。
"trailingComma": "none", // 此设置决定在多行时是否添加尾随逗号。设为"none"时,不添加尾随逗号。
"bracketSpacing": true, // 此设置决定在对象字面量的括号间是否添加空格,例如:`{ foo: bar }`。
"jsxBracketSameLine": false, // 在JSX中,若表达式跨多行,此设置决定`>`的位置。设为false时,`>`位于新行。
"arrowParens": "avoid", // 此设置决定单参数箭头函数的参数是否使用圆括号。设为"avoid"时,尽可能不使用圆括号。
"endOfLine": "lf", // 此设置定义行尾使用的字符。设为"lf"时,使用LF(换行符)作为行尾字符。
"jsxSingleQuote": false, // 在JSX中,此设置决定是否使用单引号。设为false时,默认使用双引号。
"vueIndentScriptAndStyle": true // 在Vue文件中,此设置决定`<script>`和`<style>`标签内的代码是否缩进。
}
.prettierignore
文件(用于prettier需要忽略格式化的文件或目录)
/dist/*
.local
.output.js
/node_modules/**
**/*.svg
**/*.sh
/public/*
2. VScode配置Prettier插件
请务必按照以下步骤对Prettier插件进行设置,否则Prettier插件自动格式化代码可能将无效!
- 添加或修改prettier配置文件路径
- 取消默认配置勾选
- 添加vscode保存时自动格式化
- 勾选保存时自动格式化
- 勾选保存时默认格式化为prettier
3. Prettier测试
修改app.vue
文件如下,打乱格式
<template>
<div>
<h1></h1>
</div>
<div></div>
</template>
<script setup>
import {} from 'vue'
</script>
<style lang="scss" scoped></style>
在VScode中按下ctrl+s
保存后,则会自动使用prettier设置的规则进行格式化,例如对齐html标签和js脚本的双引号和加分号
2.3 ESLint设置
1. ESLint配置文件
在VScode的项目工程根目录下新建配置文件.eslintrc.cjs
和.eslintignore
.eslintrc.cjs
(用于eslint校验规则设置)
module.exports = {
root: true,
env: {
browser: true,
es2021: true,
node: true
},
extends: ["plugin:vue/vue3-recommended", "eslint:recommended", "plugin:prettier/recommended"],
parserOptions: {
ecmaVersion: 12,
sourceType: "module"
},
plugins: ["vue"],
rules: {
// 自定义规则
"prettier/prettier": "error", // 将 Prettier 的格式化规则作为 ESLint 错误处理
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
"space-before-function-paren": "off", // 确保方法名与括号之间没有空格检查
"vue/multi-word-component-names": "off", //关闭组件命名规则
"max-len": ["error", { code: 120 }], // 增加最大行宽
"function-paren-newline": ["error", "multiline"] // 允许多行参数
}
};
.eslintignore
(用于eslint需要忽略格式化的文件或目录)
*.sh
node_modules
*.md
*.woff
*.ttf
.vscode
.idea
dist
/public
/docs
.husky
.local
/bin
.eslintrc.cjs
prettier.config.js
src/assets
tailwind.config.js
postcss.config.js
2. VScode设置ESLint
在VScode设置里启用ESLint
配置Settings.json
加入Vue文件校验
"eslint.validate": [
"javascript",
"javascriptreact",
"html",
{ "language": "vue", "autoFix": true }
]
3. 测试ESLint
在app.vue
添加如下测试代码
<template>
<div>
<h1></h1>
</div>
<div></div>
</template>
<script setup>
import {} from 'vue';
console.log("Eslint test");
console.log("hello world!")
</script>
<style lang="scss" scoped></style>
可以看到对应不符合校验规则的已经爆红(建议重启VScode)
ESLint校验规则默认已经读取自Prettier的规则配置,需要修改校验规则直接修改.prettierrc
文件,或自行在.eslintrc.cjs
文件里添加规则,但是需要注意和Prettier的格式化规则冲突问题。
至此,综上所属已经完在VScode下ESLint+Prettier的组合规则校验+格式化规则添加。