使用链式方法的 Eslint 缩进

Eslint indent with chained methods

如何将 eslint 配置为:

Promise.all(promises)
.then(() => {
  myExampleFunction()
})

而不是:

Promise.all(promises)
    .then(() => {
      myExampleFunction()
    })

我们正在使用以下 eslint 包:

"eslint": "4.12.0",
"eslint-plugin-promise": "3.6.0",
"eslint-plugin-react": "7.5.1",
"eslint-plugin-react-native": "3.2.0",

您可以根据文档将 MemberExpression 设置为 0

"Indent of 2 spaces with MemberExpression set to 0 will indent the multi-line property chains with 0 spaces." - indent - Rules

作为内联评论 /*eslint indent: ["error", 2, { "MemberExpression": 0 }]*/

在 .eslintrc 中 "rules": {"indent": ["error", 2, { "MemberExpression": 0 }]}