其他分享
首页 > 其他分享> > Create-React-App代码规范

Create-React-App代码规范

作者:互联网

Create-React-App项目代码规范配置

1、安装Prettier

yarn add --dev --exact prettier

2、创建Prettier配置文件

echo {}> .prettierrc.json
echo build coverage> .prettierignore

3、配置Git钩子

npx mrm@2 lint-staged
# 修改package.json中的lint-staged, 添加ts、tsx扩展名
"lint-staged": {
  "*.{js,css,md,ts,tsx}": "prettier --write"
}

原因:为了团队代码的一致性,需要在Git提交代码时进行格式化

4、解决Prettier和Eslint冲突

yarn add -D eslint-config-prettier
"eslintConfig": {
  "extends": [
    "react-app",
    "react-app/jest",
    "prettier"
  ]
},

5、解决提交代码时,提交信息不规范的问题

yarn add -D @commitlint/config-conventional @commitlint/cli

echo "module.exports = {extends: ['@commitlint/config-conventional']};" > commitlint.config.js
npx husky add .husky/commit-msg 'npx --no-install commitlint --edit "$1"'

6、大功告成

git commit -m "fix: 配置了代码规范"

标签:--,Create,lint,json,React,add,prettier,App,commitlint
来源: https://www.cnblogs.com/marioblog/p/14966748.html