meta: allow a maximum of 0 warnings for the lint script (as intended)

This commit is contained in:
Xymorot 2021-01-24 20:11:01 +01:00
parent cc0e584f5b
commit 6e87ffc36c
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@
"test": "electron-mocha --config .mocharc.json",
"coverage": "nyc npm run test",
"prelint": "eslint-config-prettier src/main.ts",
"lint": "eslint ./**/*.* --max-warnings 1",
"lint": "eslint ./**/*.* --max-warnings 0",
"lint:fix": "eslint ./**/*.* --fix",
"prettier": "prettier -c **/*.*",
"prettier:fix": "prettier --write **/*.*",