Skip to content

Commit e669d26

Browse files
authored
Enable permissive max-len and max-lines as warning (#84)
1 parent f010b63 commit e669d26

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

index.js

+15
Original file line numberDiff line numberDiff line change
@@ -409,6 +409,21 @@ module.exports = {
409409
},
410410
],
411411
'max-depth': 'warn',
412+
'max-len': [
413+
'warn',
414+
{
415+
code: 200,
416+
ignoreComments: true,
417+
ignoreUrls: true,
418+
},
419+
],
420+
'max-lines': [
421+
'warn',
422+
{
423+
max: 1500,
424+
skipComments: true,
425+
},
426+
],
412427
'max-nested-callbacks': [
413428
'warn',
414429
4,

0 commit comments

Comments
 (0)