regexp/no-escape-backspace
💼 This rule is enabled in the following configs: 🟢 flat/recommended
, 🔵 recommended
.
💡 This rule is manually fixable by editor suggestions.
disallow escape backspace (
[\b]
)
📖 Rule Details
This rule reports [\b]
.
The word boundaries (\b
) and the escape backspace ([\b]
) are indistinguishable at a glance. This rule does not allow backspace ([\b]
). Use unicode escapes (\u0008
) instead.
🔧 Options
Nothing.
🚀 Version
This rule was introduced in eslint-plugin-regexp v0.1.0