Skip to content

Commit

Permalink
[eslint config] [base] add disabled prefer-object-has-own rule
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Dec 22, 2021
1 parent 445322d commit 38bc026
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/eslint-config-airbnb-base/rules/best-practices.js
Expand Up @@ -376,6 +376,11 @@ module.exports = {
// https://eslint.org/docs/rules/prefer-named-capture-group
'prefer-named-capture-group': 'off',

// Prefer Object.hasOwn() over Object.prototype.hasOwnProperty.call()
// https://eslint.org/docs/rules/prefer-object-has-own
// TODO: semver-major: enable thus rule, once eslint v8.5.0 is required
'prefer-object-has-own': 'off',

// https://eslint.org/docs/rules/prefer-regex-literals
'prefer-regex-literals': ['error', {
disallowRedundantWrapping: true,
Expand Down

0 comments on commit 38bc026

Please sign in to comment.