Skip to content
On this page

如何安装并使用 ESLintConfig

目标

  • 安装eslint-config-airbnb-base配置
  • 在项目中继承eslint-config-airbnb-base配置

Coding

  • 执行命令安装 pnpm add eslint-config-airbnb-base 同样如果需要peerdependencies也是需要安装
  • 然后在.eslintrc配置 extends

image-20220629134828063

  • 然后执行命令就可以看见 airbnb-base 的规则以及生效啦~

覆盖 extends 配置包中的规则

  • 只需要在.esintrc的 rules 中重写规则就可以覆盖掉extends包中的规则

image-20220629135104874

Released under the MIT License.