Skip to content

Commit

Permalink
Enable permissive max-len and max-lines as warning (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
fregante committed Jul 28, 2024
1 parent f010b63 commit e669d26
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,21 @@ module.exports = {
},
],
'max-depth': 'warn',
'max-len': [
'warn',
{
code: 200,
ignoreComments: true,
ignoreUrls: true,
},
],
'max-lines': [
'warn',
{
max: 1500,
skipComments: true,
},
],
'max-nested-callbacks': [
'warn',
4,
Expand Down

0 comments on commit e669d26

Please sign in to comment.