Skip to content

Commit 7c5de63

Browse files
authored
ref(eslint): Run lint commands with --max-warnings=0 (#925)
1 parent 65d64a6 commit 7c5de63

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,10 @@
8686
"postbuild": "chmod +x ./dist/bin.js && cp -r scripts/** dist",
8787
"lint": "yarn lint:prettier && yarn lint:eslint",
8888
"lint:prettier": "prettier --check \"{lib,src,test}/**/*.ts\"",
89-
"lint:eslint": "eslint . --cache --format stylish",
89+
"lint:eslint": "eslint . --cache --format stylish --max-warnings=0",
9090
"fix": "yarn fix:eslint && yarn fix:prettier",
9191
"fix:prettier": "prettier --write \"{lib,src,test}/**/*.ts\"",
92-
"fix:eslint": "eslint . --format stylish --fix",
92+
"fix:eslint": "eslint . --format stylish --fix --max-warnings=0",
9393
"test": "jest",
9494
"test:e2e": "yarn build && ./e2e-tests/run.sh",
9595
"test:e2e:bin": "chmod +x ./dist-bin/* && SENTRY_WIZARD_E2E_TEST_BIN=1 ./e2e-tests/run.sh",

0 commit comments

Comments
 (0)