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
The latest version gives false positives for cases similar to the following:
$ cat example.sh key="1234Iy789" $ typos example.sh error: `Iy` should be `It` --> example.sh:1:10 | 1 | key="1234Iy789" | ^^ |
If this is intended, how can I resolve this generally? These are part of my unit tests.
The text was updated successfully, but these errors were encountered:
You could add a regexp in default.extend-ignore-re.
default.extend-ignore-re
Sorry, something went wrong.
typos has support for several well-known non-identifiers (base64, colors, urls, etc).
We have issues for better recognizing truly random content, particularly #484.
As a workaround, extend-ignore-re can help, see #814 for an example.
extend-ignore-re
As there is an issue for heuristics, I'm closing in favor of that.
No branches or pull requests
The latest version gives false positives for cases similar to the following:
If this is intended, how can I resolve this generally? These are part of my unit tests.
The text was updated successfully, but these errors were encountered: