We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
You can continue the conversation there. Go to discussion →
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
Maybe I'm doing this wrong, but is there a way to exclude a whole string?
For example, I want to replace Front-end with => frontend. That works
Front-end
frontend
But I want to exclude New Front-End Adventures because that's how the author titled the workshop.
New Front-End Adventures
Is there a way to do that? I tried both skip and exclude
skip
exclude
The text was updated successfully, but these errors were encountered:
exclude exclude terms from the built-in dictionary, and skip skips TextLint node types, like blockquotes, etc.
The only way to somehow achieve what you're trying to do is to disable the rule for the entire paragraph:
https://github.com/sapegin/textlint-rule-terminology#tips--tricks
Sorry, something went wrong.
Having a special feature for that would be nice though — feel free to send a pull request 👾
We are using https://github.com/textlint/textlint-filter-rule-allowlist for this purpose, FYI as it lets you omit certain words or phrases from all textlint rules
bug fixes
readme
No branches or pull requests
Maybe I'm doing this wrong, but is there a way to exclude a whole string?
For example, I want to replace
Front-end
with =>frontend
. That worksBut I want to exclude
New Front-End Adventures
because that's how the author titled the workshop.Is there a way to do that? I tried both
skip
andexclude
The text was updated successfully, but these errors were encountered: