Add eslint max-params rule with a max of 7

This commit is contained in:
Pier-Luc Ducharme 2022-12-30 10:24:09 -05:00
parent 5e51616e18
commit 47c13444cc
No known key found for this signature in database

@ -46,6 +46,7 @@ module.exports = {
'keyword-spacing': ['error'],
'no-throw-literal': ['error'],
'max-statements-per-line': ['error'],
'max-params': ['error', 7],
'no-duplicate-imports': ['error'],
'no-empty-function': ['error'],
'no-floating-decimal': ['error'],