为了实现代码规范,咱们在使用中会使用诸多插件,好比eslint
、prettier
、commitlint
、stylelint
等等,在新项目中这样一套组合拳下来,也是稍显繁琐,另外还要定制配置文件,某种程度上来讲是体力活。javascript
本文的目的是介绍如何简化配置,统一规范。css
magic-lint是一款代码规范工具,集检查、美化于一体,可以检查commit
信息,经过hook
在代码提交时规范代码,里面包含这些:html
使用magic-lint
以后就不须要单独安装上述插件,能够无门槛使用。前端
npm install magic-lint --save-dev
复制代码
Usage: magic-lint [options] file.js [file.js] [dir]
# 提交commit触发校验
magic-lint --commit
# 对指定路径 lint
magic-lint --prettier --eslint --stylelint src/
# 只对提交的代码进行 lint
magic-lint --staged --prettier --eslint --stylelint
# 对于某些场景须要指定 lint 工具的子参数
magic-lint --eslint.debug -s.formatter=json -p.no-semi
Options:
--commit, -C only check commit msg [boolean] [default: false]
--staged, -S only lint git staged files [boolean] [default: false]
--prettier, -p format code with prettier [boolean] [default: false]
--eslint, -e enable lint javascript [boolean] [default: false]
--stylelint, --style, -s enable lint style [boolean] [default: false]
--fix, -f fix all eslint and stylelint auto-fixable problems [boolean] [default: false]
--quiet, -q report errors only [boolean] [default: false]
--cwd current working directory [default: process.cwd()
复制代码
在package.json
中添加如:java
+ "husky": {
+ "hooks": {
+ "pre-commit": "magic-lint --staged --eslint --stylelint --prettier --fix"",
+ "commit-msg": "magic-lint --commit"
+ }
+ }
复制代码
eslint
是一款代码检查工具,使用的时候还需添加具体的配置文件。在React
项目中咱们通常会使用eslint-config-airbnb
。node
经过执行以下命令能够看到依赖包的版本:react
npm info "eslint-config-airbnb@latest" peerDependencies
复制代码
咱们获得以下内容:git
{
eslint: '^5.16.0 || ^6.1.0',
'eslint-plugin-import': '^2.18.2',
'eslint-plugin-jsx-a11y': '^6.2.3',
'eslint-plugin-react': '^7.14.3',
'eslint-plugin-react-hooks': '^1.7.0'
}
复制代码
若是使用的npm
版本大于4,可使用下面的命令快速安装依赖,无需手动敲打:es6
npx install-peerdeps --dev eslint-config-airbnb
复制代码
安装完成以后在项目根目录建立.eslintrc.js
,一样可使用下面的命令,或者手动建立:github
./node_modules/.bin/eslint --init
复制代码
module.exports = {
"env": {
"browser": true,
"es6": true
},
"extends": "airbnb",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
}
};
复制代码
eslint-config-airbnb
本质是eslint
配置的定制合集,其实咱们也能够根据自身状况维护一套配置,这样在协做中的项目能够统一配置,避免配置的来回复制。
prettier
和eslint
须要搭配使用,使用prettier
能让咱们在保存或者提交代码时格式化代码,避免不一样编辑器、开发环境致使的格式问题。
prettier
的配置很少,具体的配置介绍能够看下面的介绍,你们结合eslint
的规则配置便可。
这里咱们使用.prettierrc.js
配置方式。
module.exports = {
// 一行最多 150 字符
printWidth: 150,
// 使用 4 个空格缩进
tabWidth: 4,
// 不使用缩进符,而使用空格
useTabs: false,
// 行尾须要有分号
semi: true,
// 使用单引号
singleQuote: true,
// 对象的 key 仅在必要时用引号
quoteProps: 'as-needed',
// jsx 不使用单引号,而使用双引号
jsxSingleQuote: false,
// 末尾是否须要逗号
trailingComma: 'es5',
// 大括号内的首尾须要空格
bracketSpacing: true,
// jsx 标签的反尖括号须要换行
jsxBracketSameLine: false,
// 箭头函数,只有一个参数的时候,也须要括号
arrowParens: 'always',
// 每一个文件格式化的范围是文件的所有内容
rangeStart: 0,
rangeEnd: Infinity,
// 不须要写文件开头的 @prettier
requirePragma: false,
// 不须要自动在文件开头插入 @prettier
insertPragma: false,
// 使用默认的折行标准
proseWrap: 'preserve',
// 根据显示样式决定 html 要不要折行
htmlWhitespaceSensitivity: 'css',
// 换行符使用 lf
endOfLine: 'lf',
};
复制代码
这里一样也有排除文件.prettierignore
,语法规则和.gitignore
同样。
stylelint
是一款css代码规范工具,magic-lint
里面已经预置了一些配置和插件:
配置文件能够命名.stylelintrc.json
,填充以下内容:
{
"extends": ["stylelint-config-standard", "stylelint-config-css-modules", "stylelint-config-rational-order", "stylelint-config-prettier"],
"plugins": ["stylelint-order", "stylelint-declaration-block-no-ignored-properties"],
"rules": {
"no-descending-specificity": null,
"plugin/declaration-block-no-ignored-properties": true
}
}
复制代码
忽略文件的名称是.stylelintignore
,遵循.gitignore
语法。
commitlint
是一款校验commit
提交信息的工具,它可让咱们的提交信息更规范、更有可读性,甚至能够基于提交自动生成changelog
。
commit
的格式要求以下,这段内容一样也能够直接用到git
提交模板:
Type(<scope>): <subject>
<body>
<footer>
# Type 字段包含:
# feat:新功能(feature)
# fix:修补bug
# docs:文档(documentation)
# style: 格式(不影响代码运行的变更)
# refactor:重构(即不是新增功能,也不是修改bug的代码变更)
# test:增长测试
# chore:构建过程或辅助工具的变更
# scope用于说明 commit 影响的范围,好比数据层、控制层、视图层等等。
# subject是 commit 目的的简短描述,不超过50个字符
# Body 部分是对本次 commit 的详细描述,能够分红多行
# Footer用来关闭 Issue或以BREAKING CHANGE开头,后面是对变更的描述、
# 以及变更理由和迁移方法
复制代码
例子:
git commit -m 'feat: 增长用户搜搜功能'
git commit -m 'fix: 修复用户检测无效的问题'
复制代码
magic-lint
已经内置@commitlint/config-conventional
配置方案,它里面包含了如下几个type
:
'build',
'ci',
'chore',
'docs',
'feat',
'fix',
'perf',
'refactor',
'revert',
'style',
'test'
复制代码
在前端开发中,须要配置的内容太多太多了,大把的时间花在配置上就真的变成了"前端配置师"。
可能这也是咱们都愿意造轮子的缘由了,不过最终在工做中能起到做用的轮子就是好轮子。一样若是只是使用别人的轮子,本身又如何能成长呢!
本文同步发表于做者博客: React项目快速搭配eslint,prettier,commitlint,lint-staged