-
-
Notifications
You must be signed in to change notification settings - Fork 932
Closed
Labels
C-bugCategory - BugCategory - Buggood first issueExperience Level - Good for newcomersExperience Level - Good for newcomers
Description
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);Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
C-bugCategory - BugCategory - Buggood first issueExperience Level - Good for newcomersExperience Level - Good for newcomers
Type
Fields
Give feedbackPriority
None yet