You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our project have four targets for JSHint as some require different .jshintrc options. When you don't specify a target, all are executed which is perfect. However, the other targets are skipped as soon as one reports errors. Using --force or the force option runs all the targets, but then the task itself passes.
I would like all targets to be processed and have the task pass only if each target passed. My current workaround is very cumbersome and repeats information:
Is there an easier way that I'm missing? If not, could we extend the force option to add a value that would continue the task and fail at the end if any target had errors? Ideally, omitting force entirely would work like this, but others may be depending on this fail-fast behavior.
The text was updated successfully, but these errors were encountered:
Our project have four targets for JSHint as some require different
.jshintrc
options. When you don't specify a target, all are executed which is perfect. However, the other targets are skipped as soon as one reports errors. Using--force
or theforce
option runs all the targets, but then the task itself passes.I would like all targets to be processed and have the task pass only if each target passed. My current workaround is very cumbersome and repeats information:
Is there an easier way that I'm missing? If not, could we extend the
force
option to add a value that would continue the task and fail at the end if any target had errors? Ideally, omittingforce
entirely would work like this, but others may be depending on this fail-fast behavior.The text was updated successfully, but these errors were encountered: