-
I have several rules which work on the
And my asciidoc files contain code sections like
I want that anything inside of
or
or
... nothing works. How would I teach vale to ignore all code stuff? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Vale will ignore listing blocks and inline literals by default. If you specify extends: existence
message: "Use uppercase letters for hexadecimal numbers"
level: error
raw: '\b0x[0-9a-f]*[a-f][0-9a-f]*\b' |
Beta Was this translation helpful? Give feedback.
Vale will ignore listing blocks and inline literals by default.
If you specify
scope: raw
, though, you get the "raw" unprocessed file contents, so no scope-related features will work. In this case, your rule should work as intended if you removescope: raw
: