We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
function-paren-newline
multiline-arguments
1 parent 82dbec3 commit c5d55dbCopy full SHA for c5d55db
packages/eslint-config-airbnb-base/rules/style.js
@@ -101,9 +101,9 @@ module.exports = {
101
// TODO: enable
102
'func-style': ['off', 'expression'],
103
104
- // enforce consistent line breaks inside function parentheses
+ // require line breaks inside function parentheses if there are line breaks between parameters
105
// https://eslint.org/docs/rules/function-paren-newline
106
- 'function-paren-newline': ['error', 'consistent'],
+ 'function-paren-newline': ['error', 'multiline-arguments'],
107
108
// Blacklist certain identifiers to prevent them being used
109
// https://eslint.org/docs/rules/id-blacklist
0 commit comments