首页 > 其他 > 详细

ESLint + Prettier + husky + lint-staged 规范统一前端代码风格

时间:2019-11-24 23:47:38      阅读:211      评论:0      收藏:0      [点我收藏+]

写在前面:

  • ESLint: Find and fix problems in your JavaScript code.
  • Prettier: Prettier is an opinionated code formatter. 
  • Husky: Husky can prevent bad git commit, git push and more.
  • Lint-staged: Run linters against staged git files and don‘t let ?? slip into your code base!
  • EditorConfig: EditorConfig helps maintain consistent coding styles for multiple developers working on the same project across various editors and IDEs.
  • 开发工具:VS Code、插件: Prettier,ESLint
  • 开发框架:React V16+、React CLI
  • 版本控制:Git
  • 参考资料:

 

搭建项目:

npx create-react-app [your-project-name]
cd [your-project-name]
npm run eject

 

 初始化 ESLint 配置文件:

./node_modules/.bin/eslint --init

根据问题选择自己喜欢的配置(选错也没事,后面可以在配置文件里修改)完成以后会在项目根目录生成 .eslintrc.js 文件。

技术分享图片

.eslintrc.js:

module.exports = {
    ‘env‘: {
        ‘browser‘: true,
        ‘es6‘: true,
        ‘node‘: true
    },
    ‘extends‘: [
        ‘eslint:recommended‘,
        ‘plugin:react/recommended‘
    ],
    ‘globals‘: {
        ‘Atomics‘: ‘readonly‘,
        ‘SharedArrayBuffer‘: ‘readonly‘
    },
    ‘parserOptions‘: {
        ‘ecmaFeatures‘: {
            ‘jsx‘: true
        },
        ‘ecmaVersion‘: 2018,
        ‘sourceType‘: ‘module‘
    },
    ‘plugins‘: [
        ‘react‘
    ],
    ‘rules‘: {
        ‘indent‘: [
            ‘error‘,
            2,
            {
                ‘SwitchCase‘: 1,
            },
        ],
        ‘linebreak-style‘: [
            ‘error‘,
            ‘unix‘
        ],
        ‘quotes‘: [
            ‘error‘,
            ‘single‘
        ],
        ‘semi‘: [
            ‘error‘,
            ‘always‘
        ],
        ‘react/jsx-uses-react‘: ‘error‘, // Prevent React to be incorrectly marked as unused
        ‘react/jsx-uses-vars‘: ‘error‘, // Prevent variables used in JSX to be incorrectly marked as unused
        ‘no-console‘: ‘off‘,
    }
};

 

初始化 Prettier 配置:

在根目录下新建 .prettierrc.js 文件:

module.exports = {
  trailingComma: ‘all‘,
  printWidth: 80,
  tabWidth: 2,
  semi: true,
  singleQuote: true,
  jsxBracketSameLine: true,
  jsxSingleQuote: true,
  arrowParens: ‘always‘,
};

 

安装 Prettier、husky、lint-staged: 

npm install --save-dev --save-exact prettier
npm install --save-dev husky
npm install --save-dev lint-staged

注意一定要使用 --save-dev 安装在 devDependencies 下。

 

初始化 lint-staged 配置:

npx mrm lint-staged

完成后会在 package.json 中生成husky和lint-staged配置(以下为手动修改后的配置):

  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{js,jsx,css,less,json,md}": [
      "prettier --write",
      "git add"
    ],
    "**/*.less": "stylelint --syntax less",
    "**/*.{js,jsx}": "npm run lint-staged:js"
  },

 

配置package.json中的脚本命令:

"scripts": {
    "lint": "npm run lint:js && npm run lint:style && npm run lint:prettier",
    "lint-staged": "lint-staged",
    "lint-staged:js": "eslint --ext .js,.jsx,.ts,.tsx ",
    "lint:fix": "eslint --fix --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src && npm run lint:style",
    "lint:js": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src",
    "lint:prettier": "check-prettier lint",
    "lint:style": "stylelint --fix \"src/**/*.less\" --syntax less",
    "prettier": "prettier -c --write \"**/*\""
  },

 

VS Code安装 Prettier、ESLint 插件(不会的自行Google)

技术分享图片技术分享图片

配置 VS Code 编辑器:

技术分享图片 

这里只示例配合 prettier 插件使用的配置,当保存文件的时候将自动格式化代码:

{
    "editor.defaultFormatter": "esbenp.prettier-vscode",
    "editor.formatOnSave": true,
}

 

创建可移植的自定义编辑器设置:

在根目录下新建 .editorconfig 文件,配置如下:

# http://editorconfig.org
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

[Makefile]
indent_style = tab

 

写在最后:

以上配置均可在 写在最前 的链接中找到,可以根据自己的风格进行配置。 

 

 

ESLint + Prettier + husky + lint-staged 规范统一前端代码风格

原文:https://www.cnblogs.com/jserhub/p/11924289.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!