如何为 3 space 配置 Eslint 缩进规则?

How to configure Eslint indent rules for 3 space?

我喜欢将 Javascript 文件缩进到 3 个空格。但是 Eslint 不喜欢这种方式,它给了我一些缩进警告。 我该如何解决?

当我们与团队合作时,其他团队成员可能会以不同方式配置他们的编辑器和格式化程序。在这种情况下,我应该如何配置 Eslint? 还有,如果我不想让 Eslit 给我任何缩进错误怎么办。

error  Expected indentation of 2 spaces but found 3

warning  Expected indentation of 2 spaces but found 3 spaces
warning  Expected indentation of 4 spaces but found 6 spaces
warning  Expected indentation of 4 spaces but found 6 spaces
warning  Expected indentation of 2 spaces but found 3 spaces

来自评论的澄清:

“我不使用 prettier”

您可以使用下面的代码进行配置

"indent": ["error", 4]   // Indent with 4 spaces

"react/jsx-indent": ["error", 4] // Indent JSX with 4 spaces

"react/jsx-indent-props": ["error", 4]   // Indent props with 4 spaces