-
Notifications
You must be signed in to change notification settings - Fork 2.1k
doccheck: exclude dist/tools directory from group check #10152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
dist/tools/doccheck/check.sh
Outdated
@@ -32,7 +32,7 @@ then | |||
fi | |||
|
|||
exclude_filter() { | |||
grep -v -e vendor -e examples -e tests | |||
grep -e vendor -e examples -e tests -e "\<dist/tools\>" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why remove -v
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Leftover from my experimentations with this script. I noticed it already when retesting, but forgot to put it back.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed and squashed
38844c9
to
6f8fd1d
Compare
@@ -32,7 +32,7 @@ then | |||
fi | |||
|
|||
exclude_filter() { | |||
grep -v -e vendor -e examples -e tests | |||
grep -v -e vendor -e examples -e tests -e "\<dist/tools\>" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
second question: why using "\< \>"
. Note that it also works with just dist/tools
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
to exclude corner cases like e.g. absurdist/toolspinner
;-) might also be a good idea to adapt this for the other pattrens if applicable. But that's a task for a different PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK
Codacy takes longer than Murdock for a one-line change o_O |
Codacy is done, let's go. |
Contribution description
Removes doc group checks from
dist/tools
. Doxygen is not supposed to build that so checking it doesn't make sense.Testing procedure
Take e.g. #10072 and run this fix on it. In current state (0ca02de & 19d0da0) it should fail in current master. It is fixed with this PR.
Issues/PRs references
See #10072 (comment)