htmlhint / HTMLHint

⚙️ The static code analysis tool you need for your HTML
https://htmlhint.com
MIT License
3.08k stars 383 forks source link

fix(id-class-value): fix ineficient regex #1414

Closed bebehr closed 2 weeks ago

bebehr commented 7 months ago

Replacing the capturing group quantifier ( ... ) with a non-capturing group quantifier (?: ... ) to reduce the risk of exponential backtracking.

1147

Short description of what this resolves:

Reduce risk of exponential backtracking in rule id-class-value

Proposed changes: