eslint: Disable max-len

Change-Id: I7e49dc170dba62b88f1879ae670f806f6b54d4e9
This commit is contained in:
Ed Sanders 2020-04-21 15:50:19 +01:00
parent 9c9fc33fa8
commit d3c46a2967
2 changed files with 4 additions and 2 deletions

View file

@ -1,5 +1,6 @@
{ {
"rules": { "rules": {
"no-implicit-globals": "off" "no-implicit-globals": "off",
"max-len": "off"
} }
} }

View file

@ -1,6 +1,7 @@
{ {
"rules": { "rules": {
"no-implicit-globals": "off" "no-implicit-globals": "off",
"max-len": "off"
}, },
"extends": [ "extends": [
"wikimedia/qunit", "wikimedia/qunit",