eslint-config-seekingalpha-base 12.2.0 → 12.3.0
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 +4 -0
- package/README.md +1 -1
- package/package.json +3 -3
- package/rules/eslint-plugin-unicorn/index.js +0 -1
package/CHANGELOG.md
CHANGED
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@10.
|
|
9
|
+
npm install eslint@10.8.0 eslint-plugin-import-x@4.17.1 eslint-plugin-promise@7.3.0 eslint-plugin-unicorn@65.0.1 --save-dev
|
|
10
10
|
|
|
11
11
|
Install SeekingAlpha shareable ESLint:
|
|
12
12
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-config-seekingalpha-base",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.3.0",
|
|
4
4
|
"description": "SeekingAlpha's sharable base ESLint config",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -48,13 +48,13 @@
|
|
|
48
48
|
"node": ">= 24"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
51
|
-
"eslint": "10.
|
|
51
|
+
"eslint": "10.8.0",
|
|
52
52
|
"eslint-plugin-import-x": "4.17.1",
|
|
53
53
|
"eslint-plugin-promise": "7.3.0",
|
|
54
54
|
"eslint-plugin-unicorn": "72.0.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"eslint": "10.
|
|
57
|
+
"eslint": "10.8.0",
|
|
58
58
|
"eslint-plugin-import-x": "4.17.1",
|
|
59
59
|
"eslint-plugin-promise": "7.3.0",
|
|
60
60
|
"eslint-plugin-unicorn": "72.0.0"
|
|
@@ -337,7 +337,6 @@ export default {
|
|
|
337
337
|
// https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-mismatched-map-key.md
|
|
338
338
|
'unicorn/no-mismatched-map-key': 'error',
|
|
339
339
|
|
|
340
|
-
// oxlint-disable-next-line @cspell/spellchecker
|
|
341
340
|
// https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-misrefactored-assignment.md
|
|
342
341
|
'unicorn/no-misrefactored-assignment': 'error',
|
|
343
342
|
|