Skip to content

Commit 6b7e5fd

Browse files
amir-rahmaniiASafaeirad
authored andcommitted
fix(base): reduce max-params rule limit
1 parent 470fcde commit 6b7e5fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/modules/base.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function base(options = {}) {
4545
'max-lines-per-function': ['error', 150],
4646
'max-lines': ['error', { max: 2500, skipBlankLines: false, skipComments: false }],
4747
'max-nested-callbacks': ['error', 7],
48-
'max-params': ['error', 7],
48+
'max-params': ['error', 3],
4949
'max-statements': ['error', 40],
5050
'no-alert': 'error',
5151
'no-array-constructor': 'error',

0 commit comments

Comments
 (0)