style(eslint): do not log all files when linting, just errors

This commit is contained in:
Amruth Pillai 2022-03-09 22:43:45 +01:00
parent cbbdc92c66
commit ecab1e0bfa
No known key found for this signature in database
GPG Key ID: E3C57DF9B80855AD
1 changed files with 2 additions and 2 deletions

View File

@ -14,8 +14,8 @@
},
"scripts": {
"prepare": "husky install",
"lint": "eslint --fix --ext .js,.ts,.tsx .",
"format": "prettier --write \"./**/*.{js,ts,tsx,json}\"",
"lint": "eslint --quiet --fix --ext .js,.ts,.tsx .",
"format": "prettier --loglevel error --write \"./**/*.{js,ts,tsx,json}\"",
"dev:schema": "pnpm -F schema dev",
"dev:server": "pnpm -F server start:debug",
"dev:client": "pnpm -F client dev",