forked from FoundKeyGang/FoundKey
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:
parent
4fbe2e065e
commit
a3a3cb7258
3 changed files with 3 additions and 3 deletions
|
@ -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"
|
||||
},
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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": {
|
||||
|
|
Loading…
Reference in a new issue