Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions eslint-configs/eslint-config-seekingalpha-base/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## 11.29.0 - 2025-10-29

- [deps] update `eslint-plugin-unicorn` to version `62.0.0`
- [breaking] enable `unicorn/no-immediate-mutation` rule
- [breaking] enable `unicorn/no-useless-collection-argument` rule
- [breaking] enable `unicorn/prefer-response-static-json` rule

## 11.28.0 - 2025-10-18

- [deps] update `eslint` to version `9.37.0`
Expand Down
2 changes: 1 addition & 1 deletion eslint-configs/eslint-config-seekingalpha-base/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This package includes the shareable ESLint config used by [SeekingAlpha](https:/

Install ESLint and all [Peer Dependencies](https://nodejs.org/en/blog/npm/peer-dependencies/):

npm install eslint@9.38.0 eslint-plugin-array-func@5.1.0 eslint-plugin-import@2.32.0 eslint-plugin-promise@7.2.1 eslint-plugin-unicorn@61.0.2 --save-dev
npm install eslint@9.38.0 eslint-plugin-array-func@5.1.0 eslint-plugin-import@2.32.0 eslint-plugin-promise@7.2.1 eslint-plugin-unicorn@62.0.0 --save-dev

Install SeekingAlpha shareable ESLint:

Expand Down
6 changes: 3 additions & 3 deletions eslint-configs/eslint-config-seekingalpha-base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-seekingalpha-base",
"version": "11.28.0",
"version": "11.29.0",
"description": "SeekingAlpha's sharable base ESLint config",
"main": "index.js",
"type": "module",
Expand Down Expand Up @@ -52,14 +52,14 @@
"eslint-plugin-array-func": "5.1.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-unicorn": "61.0.2"
"eslint-plugin-unicorn": "62.0.0"
},
"devDependencies": {
"eslint": "9.38.0",
"eslint-find-rules": "5.0.0",
"eslint-plugin-array-func": "5.1.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-unicorn": "61.0.2"
"eslint-plugin-unicorn": "62.0.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,9 @@ export default {
// https://github.com/sindresorhus/eslint-plugin-unicorn/blob/master/docs/rules/no-hex-escape.md
'unicorn/no-hex-escape': 'error',

// https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-immediate-mutation.md
'unicorn/no-immediate-mutation': 'error',

// https://github.com/sindresorhus/eslint-plugin-unicorn/blob/master/docs/rules/no-instanceof-array.md
'unicorn/no-instanceof-array': 'error',

Expand Down Expand Up @@ -221,6 +224,9 @@ export default {
// https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-unreadable-iife.md
'unicorn/no-unreadable-iife': 'error',

// https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-useless-collection-argument.md
'unicorn/no-useless-collection-argument': 'error',

// https://github.com/sindresorhus/eslint-plugin-unicorn/blob/master/docs/rules/no-unused-properties.md
'unicorn/no-unused-properties': 'error',

Expand Down Expand Up @@ -388,6 +394,9 @@ export default {
// https://github.com/sindresorhus/eslint-plugin-unicorn/blob/master/docs/rules/prefer-regexp-test.md
'unicorn/prefer-regexp-test': 'error',

// https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-response-static-json.md
'unicorn/prefer-response-static-json': 'error',

// https://github.com/sindresorhus/eslint-plugin-unicorn/blob/master/docs/rules/prefer-set-has.md
'unicorn/prefer-set-has': 'error',

Expand Down
4 changes: 4 additions & 0 deletions eslint-configs/eslint-config-seekingalpha-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 10.21.0 - 2025-10-29

- [deps] upgrade `eslint-plugin-react-hooks` to version `7.0.1`

## 10.20.0 - 2025-10-18

- [deps] upgrade `eslint` to version `9.38.0`
Expand Down
2 changes: 1 addition & 1 deletion eslint-configs/eslint-config-seekingalpha-react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This package includes the shareable ESLint config used by [SeekingAlpha](https:/

Install ESLint and all [Peer Dependencies](https://nodejs.org/en/blog/npm/peer-dependencies/):

npm install eslint@9.38.0 eslint-plugin-jsx-a11y@6.10.2 eslint-plugin-react@7.37.5 eslint-plugin-react-hooks@7.0.0 --save-dev
npm install eslint@9.38.0 eslint-plugin-jsx-a11y@6.10.2 eslint-plugin-react@7.37.5 eslint-plugin-react-hooks@7.0.1 --save-dev

Install SeekingAlpha shareable ESLint:

Expand Down
6 changes: 3 additions & 3 deletions eslint-configs/eslint-config-seekingalpha-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-seekingalpha-react",
"version": "10.20.0",
"version": "10.21.0",
"description": "SeekingAlpha's sharable React.js ESLint config",
"main": "index.js",
"type": "module",
Expand Down Expand Up @@ -53,13 +53,13 @@
"eslint": "9.38.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.0"
"eslint-plugin-react-hooks": "7.0.1"
},
"devDependencies": {
"eslint": "9.38.0",
"eslint-find-rules": "5.0.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.0"
"eslint-plugin-react-hooks": "7.0.1"
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 8.46.0 - 2025-10-29

- [deps] upgrade `typescript-eslint` to version `8.46.2`

## 8.45.0 - 2025-10-18

- [deps] upgrade `eslint` to version `9.38.0`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This package includes the shareable ESLint config used by [SeekingAlpha](https:/

Install ESLint and all [Peer Dependencies](https://nodejs.org/en/blog/npm/peer-dependencies/):

npm install eslint@9.38.0 typescript-eslint@8.46.1 --save-dev
npm install eslint@9.38.0 typescript-eslint@8.46.2 --save-dev

Install SeekingAlpha shareable ESLint:

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-seekingalpha-typescript",
"version": "8.45.0",
"version": "8.46.0",
"description": "SeekingAlpha's sharable typescript ESLint config",
"main": "index.js",
"type": "module",
Expand Down Expand Up @@ -39,11 +39,11 @@
},
"peerDependencies": {
"eslint": "9.38.0",
"typescript-eslint": "8.46.1"
"typescript-eslint": "8.46.2"
},
"devDependencies": {
"eslint": "9.38.0",
"eslint-find-rules": "5.0.0",
"typescript-eslint": "8.46.1"
"typescript-eslint": "8.46.2"
}
}