build: Remove maxWarnings: 0 from eslint configuration

This interferes with LibUp's ability to automatically downgrade newly
failing errors to warnings and is a deviation from the settings we
typically use.

Bug: T263922
Change-Id: Ia44038a1df1052f633ce18ac6f35253e870ab0c6
This commit is contained in:
Umherirrender 2021-02-05 20:16:27 +01:00
parent d74ab5ce5c
commit 44cdd3290d
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@
"lint": "npm -s run lint:js && npm -s run lint:styles && npm -s run lint:i18n",
"lint:fix:js": "npm -s run lint:js -- --fix",
"lint:fix:styles": "npm -s run lint:styles -- --fix",
"lint:js": "eslint --cache --max-warnings 0 .",
"lint:js": "eslint --cache .",
"lint:styles": "stylelint \"**/*.{less,css}\"",
"lint:i18n": "banana-checker --requireLowerCase=0 i18n/",
"selenium-test": "npm -s run test:size",