为了项目代码风格统一,但又不会使人难受。自动化检测格式化代码方案
Prettier
一个流行的代码格式化工具的名称,它能够解析代码,使用你自己设定的规则来重新打印出格式规范的代码。
Eslint
ESLint是一个用来识别 ECMAScript 并且按照规则给出报告的代码检测工具,使用它可以避免低级错误和统一代码的风格。
安装依赖
都是开发依赖
1
2
3npm install eslint prettier --save-dev
npm install eslint-config-prettier eslint-plugin-prettier --save-devvscode 插件安装
安装 vscode 插件 ESLint 和 Prettier - Code formatter
(ESLint 、Prettier-Code formatter、stylelint、Vetur)
需要每次保存时就自动格式化代码,添加以下配置
项目下创建 .vscode/settings.json 配置 (也可以配置到全局)
配置每次报错自动ESLint检查规则并格式化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15{
"eslint.validate": [
"javascript",
"javascriptreact",
"html",
"vue",
"typescript",
"typescriptreact",
"css",
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"stylelint.autoFix": true,
}
- 添加配置文件
添加配置文件 .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// .eslintrc.js
module.exports = {
root: true,
env: {
node: true,
},
extends: [
"plugin:vue/essential",
"eslint:recommended",
"plugin:prettier/recommended",
],
parserOptions: {
parser: "@babel/eslint-parser",
},
plugins: ["vue"],
rules: {
"prettier/prettier": "error",
"no-console": "off",
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
"vue/multi-word-component-names": [
"error",
{
ignores: ["index"], // 需要忽略的组件名
},
],
},
};添加配置文件 .prettierrc.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49//.prettierrc.js
module.exports = {
// 一行最多 120 字符
printWidth: 120,
// 使用 2 个空格缩进
tabWidth: 2,
// 不使用 tab 缩进,而使用空格
useTabs: false,
// 行尾需要有分号
semi: true,
// 使用单引号代替双引号
singleQuote: true,
// 对象的 key 仅在必要时用引号
quoteProps: 'as-needed',
// jsx 不使用单引号,而使用双引号
jsxSingleQuote: false,
// 末尾使用逗号
trailingComma: 'all',
// 大括号内的首尾需要空格 { foo: bar }
bracketSpacing: true,
// 箭头函数,只有一个参数的时候,也需要括号
arrowParens: 'always',
// 每个文件格式化的范围是文件的全部内容
rangeStart: 0,
rangeEnd: Infinity,
// 不需要写文件开头的 @prettier
requirePragma: false,
// 不需要自动在文件开头插入 @prettier
insertPragma: false,
// 使用默认的折行标准
proseWrap: 'preserve',
// 根据显示样式决定 html 要不要折行
htmlWhitespaceSensitivity: 'css',
// 换行符使用 lf
endOfLine: 'lf',
};
module.exports = {
printWidth: 80, //一行的字符数,如果超过会进行换行,默认为80
tabWidth: 2, //一个tab代表几个空格数
useTabs: false, //是否使用tab进行缩进,默认为false,表示用空格进行缩减
singleQuote: false, //字符串是否使用单引号,默认为false,使用双引号
semi: true, //行位是否使用分号,默认为true
trailingComma: "es5", //是否使用尾逗号,有三个可选值"<none|es5|all>"
bracketSpacing: true, //对象大括号直接是否有空格,默认为true,效果:{ foo: bar }
endOfLine: "auto",
};
添加命令
在 package.json 中的 scripts 中添加
1
2
3"lint": "eslint --ext .js,.vue src", // 一键检查项目是否符合eslint规则
"prettier": "prettier --write .", // 一键格式化所有文件忽略文件
某些文件不需要格式检查或代码格式化的,可以添加到配置
eslint忽略文件 .eslintignore
1
2
3/node_modules/*
/dist/*
/public/*
- prettier忽略文件 .prettierignore css 单位转换问题
1
2
3
4
5
6
7
8
9
10node_modules
.DS_Store
dist
dist-ssr
*.local
node_modules
.DS_Store
dist
dist-ssr
*.local不想被转换(px => rem)
+ 方法一:
使用 Px 或者 PX(与 eslint-prettier 冲突,需要加
/* prettier-ignore */
注释),例如:1
2
3
4
5
6
7.test {
/* prettier-ignore */
height: 60Px;
}+ 方法二:
使用
/*no*/
注释,例如:1
2
3
4
5.test {
height: 60px;/*no*/
}
结语:
参考链接:
https://juejin.cn/post/7095689037889372191
- 本文作者: 王不留行
- 本文链接: https://wyf195075595.github.io/2022/06/23/programming/构建工具/eslint_prettier/
- 版权声明: 本博客所有文章除特别声明外,均采用 MIT 许可协议。转载请注明出处!