我使用create-react-app,只想向我的package.json添加规则。我看到可以禁用此规则,但是如何?在正式文档中,只有短语“如果您不想为使用相等运算符而强制使用样式,则可以安全地禁用此规则。”
https://github.com/eslint/eslint/blob/master/docs/rules/eqeqeq.md#when-not-to-use-it
答案 0 :(得分:0)
您可以添加eslint配置文件.eslintrc并禁用其中所需的规则。
答案 1 :(得分:0)
您可以找到eslint
配置文件,并将eqeqeq
规则更改为off
:
eqeqeq: 'off',
此外,请确保不要再覆盖该设置。