-
I'm sure I've done this before but now I can't figure it out. I want to ignore a single rule when I run Vale from the command line. I've tried |
Beta Was this translation helpful? Give feedback.
Answered by
jdkato
Apr 10, 2024
Replies: 1 comment 1 reply
-
If you want to do this permanently, use If you're looking to do this as a one-off from the command line, use a filter: |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
daobrien
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you want to do this permanently, use
style.rule = NO
(e.g.,Google.DateFormat = NO
) in your.vale.ini
.If you're looking to do this as a one-off from the command line, use a filter:
vale --filter='.Name != "demo.Cap"'
.