Skip to content

Commit e584f3f

Browse files
committed
allowing npm run lint to go through all linting steps providing all the errors that need to be fixed, not just the first encountered failing test
1 parent 2094f4a commit e584f3f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dash/dash-renderer/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"postbuild": "es-check es2015 ../deps/*.js build/*.js",
1717
"test": "karma start karma.conf.js --single-run",
1818
"format": "run-s private::format.*",
19-
"lint": "run-s private::lint.*"
19+
"lint": "run-s private::lint.* --continue-on-error"
2020
},
2121
"author": "chriddyp",
2222
"license": "MIT",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"format": "run-s private::format.*",
3939
"initialize": "run-s private::initialize.*",
4040
"prepare": "husky install",
41-
"lint": "run-s private::lint.*",
41+
"lint": "run-s private::lint.* --continue-on-error",
4242
"setup-tests.py": "run-s private::test.py.deploy-*",
4343
"setup-tests.R": "run-s private::test.R.deploy-*",
4444
"citest.integration": "run-s setup-tests.py private::test.integration-*",

0 commit comments

Comments
 (0)