-
Notifications
You must be signed in to change notification settings - Fork 3
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
Rename the ignore file
annotation to ignore all
#169
Milestone
Comments
Sorokin-Anton
added a commit
that referenced
this issue
Oct 19, 2022
Problem: as in #169, `ignore file` annotation is ignoring not file itself but all links at file, which is not obvious Solution: rename it to `ignore all` Also renamed `IgnoreMode` constructors to from `Link`, `Paragraph`, `All` to more readable `IgnoreLink`, `IgnoreParagraph` and `IgnoreAll`
Sorokin-Anton
added a commit
that referenced
this issue
Oct 19, 2022
Problem: as in #169, `ignore file` annotation is ignoring not file itself but all links at file, which is not obvious Solution: rename it to `ignore all` Also renamed `IgnoreMode` constructors to from `Link`, `Paragraph`, `All` to more readable `IgnoreLink`, `IgnoreParagraph` and `IgnoreAll`
8 tasks
Sorokin-Anton
added a commit
that referenced
this issue
Oct 19, 2022
Problem: as in #169, `ignore file` annotation is ignoring not file itself but all links at file, which is not obvious Solution: rename it to `ignore all` Also renamed `IgnoreMode` constructors to from `Link`, `Paragraph`, `All` to more readable `IgnoreLink`, `IgnoreParagraph` and `IgnoreAll`
Sorokin-Anton
added a commit
that referenced
this issue
Oct 26, 2022
Problem: as in #169, `ignore file` annotation is ignoring not file itself but all links at file, which is not obvious Solution: rename it to `ignore all` Also renamed `IMFile :: IgnoreMode` and `IMSFile :: IgnoreModeState` to `IMAll` and `IMSAll`
Sorokin-Anton
added a commit
that referenced
this issue
Oct 26, 2022
…e-file-annotation [#169] Rename `ignore file` annotation to `ignore all`
Sorokin-Anton
added a commit
that referenced
this issue
Oct 26, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Clarification and motivation
In this comment, we discussed how a user could reasonably assume the
--ignored <file>
config/CLI option and the<--! xrefcheck: ignore file -->
annotation do the same thing, even though they don't.--ignored <file>
option tells xrefcheck to pretend that file doesn't exist<file>
is a markdown file, references from that file will not be verified.ignore file
annotation, however, only tells xrefcheck not to verify references from that file. References to it will still be verified.To avoid potential confusions, let's rename the
ignore file
annotation toignore all
.Acceptance criteria
ignore file
annotation has been renamed toignore all
.The text was updated successfully, but these errors were encountered: