我如何将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
"将MEMBEREXPRESSION设置为0的2个空间的缩进将缩进具有0个空间的多行属性链。" - 缩进 - 规则
作为内联评论 /*eslint indent: ["error", 2, { "MemberExpression": 0 }]*/
在.eslintrc "rules": {"indent": ["error", 2, { "MemberExpression": 0 }]}