diff --git a/.eslintrc.js b/.eslintrc.js index 2922fe11..edba0339 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -32,7 +32,14 @@ module.exports = { "no-negated-condition": "off", "require-jsdoc": "off", "no-mixed-requires": "off", - "max-len": ["warn", 120], + "max-len": [ + "error", + { + "code": 120, + "ignoreUrls": true, + "ignoreRegExpLiterals": true + } + ], "no-implicit-coercion": [ 2, {"allow": ["!!"]}