Skip to content

Commit

Permalink
Reduce the max code complexity
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisMBarr committed Jun 2, 2024
1 parent 47dcd13 commit 35c8fa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default tseslint.config(
'@typescript-eslint/strict-boolean-expressions': 'warn',

'array-callback-return': 'warn',
complexity: ['warn', { max: 15 }],
complexity: ['warn', { max: 8 }],
eqeqeq: ['warn', 'always', { null: 'ignore' }],
'no-unused-vars': 'warn',
'object-shorthand': ['warn', 'always'],
Expand Down

0 comments on commit 35c8fa4

Please sign in to comment.