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
no-hex-escape
bunx oxlint@latest -D all -D no-hex-escape --fix <file name>
input:
const unicodeMatch = "".toString().match(/[^\x00-\xFF]+/g);
actual fix:
const unicodeMatch = "".toString().match(/[^\u0000-\u00FF]+//);
expected fix: (i think)
const unicodeMatch = "".toString().match(/[^\u0000-\u00FF]+/g);
The text was updated successfully, but these errors were encountered:
no-control-regex
fix(linter) fix bug in fixer for `no-hex-escape,closes #5127
e3c93c5
a426ebe
f2b0bd1
35ae85a
7eb052e
Successfully merging a pull request may close this issue.
input:
actual fix:
expected fix: (i think)
The text was updated successfully, but these errors were encountered: