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
escape-case
I'm seeing escape-case only catch and autofix/uppercase the first escape sequence character.
Before: const x = '\uff10\uff11' After: const x = '\uFF10\uff11'
const x = '\uff10\uff11'
const x = '\uFF10\uff11'
The text was updated successfully, but these errors were encountered:
This rule only fix one character once, with --fix you'll get all fixed.
--fix
Sorry, something went wrong.
I'm a bit unsure what you mean? I did use eslint --fix but only the first escape sequence gets fixed.
eslint --fix
Right, I broke it in #534
Should be fixed by #678
fisker
Successfully merging a pull request may close this issue.
I'm seeing escape-case only catch and autofix/uppercase the first escape sequence character.
Before:
const x = '\uff10\uff11'
After:
const x = '\uFF10\uff11'
The text was updated successfully, but these errors were encountered: