ESLint: Use ignoreChainWithDepth: 3 for newline-per-chained-call

This commit is contained in:
Dan Stillman 2019-03-05 01:16:13 -05:00
parent e44dc23f55
commit 3a777dcf40

View file

@ -161,7 +161,12 @@
"always-multiline"
],
"new-parens": "off",
"newline-per-chained-call": "error",
"newline-per-chained-call": [
"error",
{
"ignoreChainWithDepth": 3
}
],
"no-alert": "off",
"no-array-constructor": "error",
"no-await-in-loop": "warn",