Can we disable a rule for a specific file? #196
Answered
by
rvben
iampi31415
asked this question in
Q&A
-
|
I do not see this option in the config example, only globals. |
Beta Was this translation helpful? Give feedback.
Answered by
rvben
Dec 13, 2025
Replies: 1 comment 1 reply
-
|
Hi @iampi31415, thanks for asking. You can find an example here: https://github.com/rvben/rumdl#configuration-file-example Example: # Disable specific rules for specific files
[per-file-ignores]
"README.md" = ["MD033"] # Allow HTML in README
"SUMMARY.md" = ["MD025"] # Allow multiple H1 in table of contents
"docs/api/**/*.md" = ["MD013", "MD041"] # Relax rules for generated docs |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
rvben
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @iampi31415, thanks for asking.
You can find an example here: https://github.com/rvben/rumdl#configuration-file-example
Example: