How do you disable indent checking on esLint? March 20, 2023 by Tarik Set the rule to "off" in your config like this: "rules": { "indent": "off" } You can read more in the docs here.