How do you disable indent checking on esLint?

前端 未结 3 587
星月不相逢
星月不相逢 2021-02-11 13:04

The indent rule seems impossible to disable; how (in config settings) do I disable this rule? thanks.

3条回答
  •  自闭症患者
    2021-02-11 13:32

    I had to add more rules. To turn off linting for react and jsx-indent

    "rules": {
        "indent": "off",
        "react/jsx-indent": "off",
        "react/jsx-indent-props": "off"
    }
    

提交回复
热议问题