@recore/config
v3.0.4
Published
ESLint/TSconfig for @recore projects
Downloads
24
Keywords
Readme
recore-config
ESLint and TSConfig for @recore projects
npm i -D eslint prettier @recore/config
提交之前检查规范
npm i -D husky lint-staged
package.json
{
"scripts": {
"lint": "eslint src --fix --ext .ts --ext .tsx"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"npm run lint"
]
}
}