eslint-config-seekingalpha-base 8.2.0 → 8.3.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,13 @@
1
1
  # Change Log
2
2
 
3
+ ## 8.3.1 - 2024-05-15
4
+
5
+ - [deps] removed `eslint-plugin-no-use-extend-native`
6
+
7
+ ## 8.3.0 - 2024-05-15
8
+
9
+ - [deps] removed `eslint-plugin-no-use-extend-native`
10
+
3
11
  ## 8.2.0 - 2024-05-12
4
12
 
5
13
  - [breaking] enable `logical-assignment-operators` rule
package/README.md CHANGED
@@ -6,7 +6,7 @@ This package includes the shareable ESLint config used by [SeekingAlpha](https:/
6
6
 
7
7
  Install ESLint and all [Peer Dependencies](https://nodejs.org/en/blog/npm/peer-dependencies/):
8
8
 
9
- npm install eslint@8.57.0 eslint-plugin-array-func@4.0.0 eslint-plugin-import@2.29.1 eslint-plugin-no-use-extend-native@0.5.0 eslint-plugin-promise@6.1.1 eslint-plugin-unicorn@53.0.0 --save-dev
9
+ npm install eslint@8.57.0 eslint-plugin-array-func@4.0.0 eslint-plugin-import@2.29.1 eslint-plugin-promise@6.1.1 eslint-plugin-unicorn@53.0.0 --save-dev
10
10
 
11
11
  Install SeekingAlpha shareable ESLint:
12
12
 
@@ -18,7 +18,6 @@ This shareable config includes all ESLint rules including ECMAScript 6 features
18
18
 
19
19
  - [eslint-plugin-import](https://github.com/benmosher/eslint-plugin-import)
20
20
  - [eslint-plugin-array-func](https://github.com/freaktechnik/eslint-plugin-array-func)
21
- - [eslint-plugin-no-use-extend-native](https://github.com/dustinspecker/eslint-plugin-no-use-extend-native)
22
21
  - [eslint-plugin-promise](https://github.com/xjamundx/eslint-plugin-promise)
23
22
  - [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn)
24
23
 
package/index.js CHANGED
@@ -9,9 +9,6 @@ module.exports = {
9
9
  // eslint-plugin-array-func rules (https://github.com/freaktechnik/eslint-plugin-array-func)
10
10
  './rules/eslint-plugin-array-func/index.js',
11
11
 
12
- // eslint-plugin-no-use-extend-native rules (https://github.com/dustinspecker/eslint-plugin-no-use-extend-native)
13
- './rules/eslint-plugin-no-use-extend-native/index.js',
14
-
15
12
  // eslint-plugin-promise rules (https://github.com/xjamundx/eslint-plugin-promise)
16
13
  './rules/eslint-plugin-promise/index.js',
17
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-seekingalpha-base",
3
- "version": "8.2.0",
3
+ "version": "8.3.1",
4
4
  "description": "SeekingAlpha's sharable base ESLint config",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -51,7 +51,6 @@
51
51
  "eslint": "8.57.0",
52
52
  "eslint-plugin-array-func": "4.0.0",
53
53
  "eslint-plugin-import": "2.29.1",
54
- "eslint-plugin-no-use-extend-native": "0.5.0",
55
54
  "eslint-plugin-promise": "6.1.1",
56
55
  "eslint-plugin-unicorn": "53.0.0"
57
56
  },
@@ -60,7 +59,6 @@
60
59
  "eslint-find-rules": "4.1.0",
61
60
  "eslint-plugin-array-func": "4.0.0",
62
61
  "eslint-plugin-import": "2.29.1",
63
- "eslint-plugin-no-use-extend-native": "0.5.0",
64
62
  "eslint-plugin-promise": "6.1.1",
65
63
  "eslint-plugin-unicorn": "53.0.0"
66
64
  }
@@ -1,9 +0,0 @@
1
- // https://github.com/dustinspecker/eslint-plugin-no-use-extend-native
2
-
3
- module.exports = {
4
- plugins: ['no-use-extend-native'],
5
-
6
- rules: {
7
- 'no-use-extend-native/no-use-extend-native': 'error',
8
- },
9
- };