We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, the regular expression use only space, dot followed by a space, dot at the end of the line and end of line:
textlint-rule-stop-words/index.js
Line 124 in 3d1d56b
In other words, it won't match in the following cases:
add up? add up! add up, and subtract. add up; and subtract. add up: 10
Using word boundary (\b) is probably a bad idea but adding common punctuation marks seems reasonable. What do you think?
\b
The text was updated successfully, but these errors were encountered:
Yeah, this sounds like a good idea! Mind sending a pull request? 👾
Sorry, something went wrong.
resolves sapegin#15 allow punctuation marks
24eec09
d73221e
b171651
fix: resolves #15 allow punctuation marks (#17)
4ebeaf3
🎉 This issue has been resolved in version 2.0.8 🎉
The release is available on:
Your semantic-release bot 📦🚀
Successfully merging a pull request may close this issue.
Currently, the regular expression use only space, dot followed by a space, dot at the end of the line and end of line:
textlint-rule-stop-words/index.js
Line 124 in 3d1d56b
In other words, it won't match in the following cases:
Using word boundary (
\b
) is probably a bad idea but adding common punctuation marks seems reasonable. What do you think?The text was updated successfully, but these errors were encountered: