Add support to configure abortOnError
for Lint task
#814
saurabharora90
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
By default,
abortOnError
is set to true. While this is good, it doesn't play well with CI because it aborts the lint checks and doesn't generate a merged report file under the app/build folder. As a result, the out of box tools on Github actions aren't able to find the sarif/xml report file to post the error messages as comments on the PR. If we set theabortOnError
to false, the report file is generated. And since checks happen on CI, local builds passing with lint error is OK.Currently, the plugin doesn't support customising this field making it a slight challenge to disable abort on error.
Beta Was this translation helpful? Give feedback.
All reactions