From e584f3f875143f203cb2db7299410c025cd44484 Mon Sep 17 00:00:00 2001 From: BSd3v <82055130+BSd3v@users.noreply.github.com> Date: Fri, 22 Nov 2024 14:11:04 -0500 Subject: [PATCH] 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 --- dash/dash-renderer/package.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dash/dash-renderer/package.json b/dash/dash-renderer/package.json index e76b5bcd33..c4f961c2be 100644 --- a/dash/dash-renderer/package.json +++ b/dash/dash-renderer/package.json @@ -16,7 +16,7 @@ "postbuild": "es-check es2015 ../deps/*.js build/*.js", "test": "karma start karma.conf.js --single-run", "format": "run-s private::format.*", - "lint": "run-s private::lint.*" + "lint": "run-s private::lint.* --continue-on-error" }, "author": "chriddyp", "license": "MIT", diff --git a/package.json b/package.json index bead30129d..94afcd7b5c 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ "format": "run-s private::format.*", "initialize": "run-s private::initialize.*", "prepare": "husky install", - "lint": "run-s private::lint.*", + "lint": "run-s private::lint.* --continue-on-error", "setup-tests.py": "run-s private::test.py.deploy-*", "setup-tests.R": "run-s private::test.R.deploy-*", "citest.integration": "run-s setup-tests.py private::test.integration-*",