Disable max-lines ESLint rule (#2161)

* Disable max-lines ESlint rule

There are several webapp files that exceed the default ESLint max-lines rule.  This commit disables the rule to avoid polluting the VSCode problems view with these warnings.

* fix tab versus space
This commit is contained in:
Doug Lauder 2022-01-25 08:01:31 -05:00 committed by GitHub
parent 61e07c3df7
commit 1e053dc36d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,6 +25,7 @@
}
},
"rules": {
"max-lines": "off",
"no-unused-expressions": 0,
"babel/no-unused-expressions": [2, {"allowShortCircuit": true}],
"eol-last": ["error", "always"],