diff --git a/index.js b/index.js index 8d89aa7..ff43688 100644 --- a/index.js +++ b/index.js @@ -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,