From d3c46a296741e0d63ed701220a3e192fbba12c20 Mon Sep 17 00:00:00 2001 From: Ed Sanders Date: Tue, 21 Apr 2020 15:50:19 +0100 Subject: [PATCH] eslint: Disable max-len Change-Id: I7e49dc170dba62b88f1879ae670f806f6b54d4e9 --- modules/.eslintrc.json | 3 ++- tests/.eslintrc.json | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/.eslintrc.json b/modules/.eslintrc.json index cfa86a9ba..715e0b32a 100644 --- a/modules/.eslintrc.json +++ b/modules/.eslintrc.json @@ -1,5 +1,6 @@ { "rules": { - "no-implicit-globals": "off" + "no-implicit-globals": "off", + "max-len": "off" } } diff --git a/tests/.eslintrc.json b/tests/.eslintrc.json index 758215de4..3d2c7fb69 100644 --- a/tests/.eslintrc.json +++ b/tests/.eslintrc.json @@ -1,6 +1,7 @@ { "rules": { - "no-implicit-globals": "off" + "no-implicit-globals": "off", + "max-len": "off" }, "extends": [ "wikimedia/qunit",