From e968c0bf954d4dbce168aa4a82761b61c3eb6479 Mon Sep 17 00:00:00 2001 From: Gonzalo Diaz <devel@gon.cl> Date: Wed, 28 Aug 2024 00:21:06 -0400 Subject: [PATCH] [CONFIG] ESLint shows info before run lint. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index cfc5e069..e515a643 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,7 @@ "scripts": { "build": "tsc -p tsconfig.prod.json", "start": "npm run test", - "lint": "npx --yes eslint . --color --max-warnings=0 && echo '✔ Your code looks good.'", + "lint": "npx --yes eslint --env-info; npx --yes eslint . --color --max-warnings=0 && echo '✔ Your code looks good.'", "jest:ci": "node --experimental-vm-modules ./node_modules/.bin/jest --no-cache --ci --color --detectOpenHandles --forceExit --runInBand --debug", "jest:clean": "npx --yes jest --clearCache && npx --yes watchman watch-del-all", "jest:bruteforce": "BRUTEFORCE=true node --experimental-vm-modules ./node_modules/.bin/jest --no-cache --ci --color --detectOpenHandles --forceExit --runInBand --debug",