From ota-meshi/eslint-plugin-regexp#445
Information:
eslint-plugin-regexp
version: 1.7.0Description
/\[([^[\]]+)]/g
error from this plugin
Unescaped source character ']'
After fixed:
/\[([^[\]]+)\]/g
error from unicorn/better-regex
/\[([^[\]]+)\]/g can be optimized to /\[([^[\]]+)]/g
/{{([\S\s]+?)}}/g
regexp/match-any
is reported
/{{([\s\S]+?)}}/g
unicorn/better-regex
is reported
As above
As above
I hope these two plugins can work better together by default, some rules can be extracted from unicorn
to regexp
instead?
Pay now to fund the work behind this issue.
Get updates on progress being made.
Maintainer is rewarded once the issue is completed.
You're funding impactful open source efforts
You want to contribute to this effort
You want to get funding like this too