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
misspell isn't validating escape sequences and sometimes treating them as misspellings. eg
misspell
"iterated element passed\nto it."
Would return
warning: "nto" is a misspelling of "not" (misspell)
where "nto" is actually "\nto" (ie byte(13) + "to" rather than byte(110) + "to")
byte(13) + "to"
byte(110) + "to"
Please note, error message taken from https://goreportcard.com - issue raised gojp/goreportcard#294
The text was updated successfully, but these errors were encountered:
One year later and misspell still doesn't handle a typical use case correctly. With lots of such false positives it quickly looses its quality.
Sorry, something went wrong.
No branches or pull requests
misspell
isn't validating escape sequences and sometimes treating them as misspellings. egWould return
where "nto" is actually "\nto" (ie
byte(13) + "to"
rather thanbyte(110) + "to"
)Please note, error message taken from https://goreportcard.com - issue raised gojp/goreportcard#294
The text was updated successfully, but these errors were encountered: