Unverified Commit bd062616 by Paul B

lint:js: diminue le nombre max de warning au nbre actuel de 292

Nous avions diminuer la limite maximum de warning autorisés dans le
style de code JS à 326 warnings (dans cooperatic-foodcoops/third-party!42), cependant le nombre d'offenses ESlint a diminué depuis.

Réduisons le max au nombre actuel de warning : 292, pour éviter d'en
introduire de nouveaux.
parent ad361176
Pipeline #1267 passed with stage
in 1 minute 23 seconds
......@@ -9,8 +9,8 @@
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --max-warnings 326 '**/*.js'",
"lint-fix": "eslint . --fix --max-warnings 326 '**/*.js'"
"lint": "eslint . --max-warnings 292 '**/*.js'",
"lint-fix": "eslint . --fix --max-warnings 292 '**/*.js'"
},
"repository": {
"type": "git",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment