Skip to content

Commit

Permalink
fix(eslint-plugin-experience): ignore complexity
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode committed Oct 9, 2023
1 parent 9da90a8 commit 34bd0ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/eslint-plugin-experience/configs/base/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ module.exports = {
],
'max-depth': 'off',
'max-params': 'off',
complexity: 'off',
'max-classes-per-file': ['error', 4],
complexity: ['error', 25],
'max-statements': ['error', 25],
'no-underscore-dangle': 'off',
'no-return-assign': ['error', 'except-parens'],
Expand Down

0 comments on commit 34bd0ab

Please sign in to comment.