remove --quiet flag from eslint

This flag means to hide warnings which is not generally desirable.
Even if warnings do not affect the end result of running CI it would
still be nice to be able to see the warnings when running the lints
normally or in CI.
This commit is contained in:
Johann150 2022-08-04 00:20:59 +02:00
parent 4fbe2e065e
commit a3a3cb7258
Signed by untrusted user: Johann150
GPG key ID: 9EE6577A2A06F8F1
3 changed files with 3 additions and 3 deletions

View file

@ -5,7 +5,7 @@
"scripts": {
"build": "tsc -p tsconfig.json || echo done. && tsc-alias -p tsconfig.json",
"watch": "node watch.mjs",
"lint": "eslint --quiet src --ext .ts",
"lint": "eslint src --ext .ts",
"mocha": "cross-env NODE_ENV=test TS_NODE_FILES=true TS_NODE_TRANSPILE_ONLY=true TS_NODE_PROJECT=\"./test/tsconfig.json\" mocha",
"test": "npm run mocha"
},

View file

@ -3,7 +3,7 @@
"scripts": {
"watch": "vite build --watch --mode development",
"build": "vite build",
"lint": "eslint --quiet src --ext .ts,.vue"
"lint": "eslint src --ext .ts,.vue"
},
"resolutions": {
"chokidar": "^3.3.1",

View file

@ -3,7 +3,7 @@
"scripts": {
"watch": "node build.js watch",
"build": "node build.js",
"lint": "eslint --quiet src --ext .ts"
"lint": "eslint src --ext .ts"
},
"resolutions": {},
"dependencies": {