Skip to content

Commit 12fb486

Browse files
committed
Disable newline-per-chained-call until eslint’s bug is resolved.
bug: eslint/eslint#5289 Closes #748.
1 parent 8a6f009 commit 12fb486

File tree

1 file changed

+1
-1
lines changed
  • packages/eslint-config-airbnb/rules

1 file changed

+1
-1
lines changed

packages/eslint-config-airbnb/rules/style.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ module.exports = {
6262
// enforces new line after each method call in the chain to make it
6363
// more readable and easy to maintain
6464
// http://eslint.org/docs/rules/newline-per-chained-call
65-
'newline-per-chained-call': [2, { 'ignoreChainWithDepth': 3 }],
65+
'newline-per-chained-call': [0, { 'ignoreChainWithDepth': 3 }],
6666
// disallow use of the Array constructor
6767
'no-array-constructor': 0,
6868
// disallow use of the continue statement

0 commit comments

Comments
 (0)