eslint-config-seekingalpha-base 5.0.0 → 5.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Change Log
2
2
 
3
+ ## 5.0.1 - 2021-12-18
4
+ - [patch] disable `prefer-object-has-own` rule
5
+
3
6
  ## 5.0.0 - 2021-12-18
4
7
  - [deps] update `eslint` to version `8.5.0`
5
8
  - [deps] update `eslint-plugin-promise` to version `6.0.0`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-seekingalpha-base",
3
- "version": "5.0.0",
3
+ "version": "5.0.1",
4
4
  "description": "SeekingAlpha's sharable base ESLint config",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -743,7 +743,7 @@ module.exports = {
743
743
  'prefer-numeric-literals': 'error',
744
744
 
745
745
  // https://eslint.org/docs/rules/prefer-object-has-own
746
- 'prefer-object-has-own': 'error',
746
+ 'prefer-object-has-own': 'off',
747
747
 
748
748
  // https://eslint.org/docs/rules/prefer-object-spread
749
749
  'prefer-object-spread': 'error',