We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
no-nonoctal-decimal-escape
1 parent f0df3a8 commit 5620bd5Copy full SHA for 5620bd5
packages/eslint-config-airbnb-base/rules/best-practices.js
@@ -182,6 +182,11 @@ module.exports = {
182
// disallows creating new instances of String, Number, and Boolean
183
'no-new-wrappers': 'error',
184
185
+ // Disallow \8 and \9 escape sequences in string literals
186
+ // https://eslint.org/docs/rules/no-nonoctal-decimal-escape
187
+ // todo: semver-major: enable when v7.14 is required
188
+ 'no-nonoctal-decimal-escape': 'off',
189
+
190
// disallow use of (old style) octal literals
191
'no-octal': 'error',
192
0 commit comments