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.
1 parent 11ab371 commit e95b1f2Copy full SHA for e95b1f2
packages/eslint-config-airbnb-base/rules/best-practices.js
@@ -217,6 +217,11 @@ module.exports = {
217
// https://eslint.org/docs/rules/no-nonoctal-decimal-escape
218
'no-nonoctal-decimal-escape': 'error',
219
220
+ // Disallow calls to the Object constructor without an argument
221
+ // https://eslint.org/docs/latest/rules/no-object-constructor
222
+ // TODO: enable, semver-major
223
+ 'no-object-constructor': 'off',
224
+
225
// disallow use of (old style) octal literals
226
// https://eslint.org/docs/rules/no-octal
227
'no-octal': 'error',
0 commit comments