Browse Source

Remove ESLint --max-warnings mistakenly added back in #7876

Thibaud Colas 3 years ago
parent
commit
e2b30c1690
1 changed files with 1 additions and 1 deletions
  1. 1 1
      package.json

+ 1 - 1
package.json

@@ -111,7 +111,7 @@
     "build": "webpack --config ./client/webpack.config.js --mode production",
     "fix:js": "eslint --ext .js,.ts,.tsx --fix ./",
     "format": "prettier --write '**/?(.)*.{css,scss,js,ts,tsx,json,yaml,yml}'",
-    "lint:js": "eslint --ext .js,.ts,.tsx --report-unused-disable-directives --max-warnings 16 ./client",
+    "lint:js": "eslint --ext .js,.ts,.tsx --report-unused-disable-directives ./client",
     "lint:css": "stylelint **/*.scss",
     "lint:format": "prettier --check '**/?(.)*.{css,scss,js,ts,tsx,json,yaml,yml}'",
     "lint": "npm run lint:js && npm run lint:css && npm run lint:format",