开发
web-frontend
build-tools
linter
Lint Staged

lint-staged

lint-staged可以帮我们只对在git暂存区的所有文件进行操作

installation

yarn add lint-staged -D

usage

touch lint-staged.config.js
module.exports = {
	"*": "eslint"
}