regexp-tree
regexp-tree copied to clipboard
Unnecessary escape
/[$@]?[a-zA-Z_\u0080-\uFFFF][\w\-\u0080-\uFFFF]*/g
Should optimize to
- /[$@]?[A-Z_a-z\u0080-\uFFFF][\w\u0080-\uFFFF\-]*/g
+ /[$@]?[A-Z_a-z\u0080-\uFFFF][\w\u0080-\uFFFF-]*/g
Found in https://github.com/prettier/prettier/pull/7991/files#diff-855523a43e898c253460fcf0f6e5f2a1R980
-
always sorted at last in CharacterClass , should be able to remove escape