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
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24.12.0
24.13.0
14 changes: 14 additions & 0 deletions .oxlintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"extends": [
"./node_modules/eslint-config-seekingalpha-base/oxlint-config.json"
],
"env": {
"builtin": true
},
"rules": {
"import/no-anonymous-default-export": "off",
"import/no-default-export": "off",
"import/extensions": "off"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import nodePlugin from 'eslint-plugin-n';

export default {
plugins: {
// eslint-disable-next-line id-length
// oxlint-disable-next-line id-length
n: nodePlugin,
},
rules: {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 8.57.0 - 2026-01-28

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

## 8.56.0 - 2026-01-13

- [deps] upgrade `typescript-eslint` to version `8.53.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.39.2 typescript-eslint@8.53.0 --save-dev
npm install eslint@9.39.2 typescript-eslint@8.54.0 --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.56.0",
"version": "8.57.0",
"description": "SeekingAlpha's sharable typescript ESLint config",
"main": "index.js",
"type": "module",
Expand Down Expand Up @@ -39,11 +39,11 @@
},
"peerDependencies": {
"eslint": "9.39.2",
"typescript-eslint": "8.53.0"
"typescript-eslint": "8.54.0"
},
"devDependencies": {
"eslint": "9.39.2",
"eslint-find-rules": "5.0.0",
"typescript-eslint": "8.53.0"
"typescript-eslint": "8.54.0"
}
}
7 changes: 2 additions & 5 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { defineConfig } from 'eslint/config';
import baseConfig from 'eslint-config-seekingalpha-base';
import baseConfig from 'eslint-config-seekingalpha-base/oxc.js';
import nodeConfig from 'eslint-config-seekingalpha-node';

export default defineConfig([
{
linterOptions: {
reportUnusedDisableDirectives: 'warn',
reportUnusedDisableDirectives: 'error',
reportUnusedInlineConfigs: 'error',
},
},
Expand All @@ -20,10 +20,7 @@ export default defineConfig([
rules: {
...baseConfig.rules,
...nodeConfig.rules,
'import/no-anonymous-default-export': 'off',
'import/no-default-export': 'off',
'import/no-unresolved': 'off',
'import/extensions': 'off',
'n/file-extension-in-import': 'off',
'n/no-missing-import': 'off',
},
Expand Down
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"lint": "oxlint && eslint .",
"prepare": "node .husky/install.js",
"prettier:check": "prettier --no-editorconfig --check .",
"prettier:write": "prettier --no-editorconfig --write ."
Expand Down Expand Up @@ -41,21 +41,22 @@
"*.{yml,yaml,md,mdx,html,json}": "prettier --write",
"*.js": [
"prettier --write",
"oxlint",
"eslint"
]
},
"devDependencies": {
"@seekingalpha/prettier-config-samw": "2.0.0",
"eslint": "9.39.2",
"eslint-config-seekingalpha-base": "11.32.0",
"eslint-config-seekingalpha-base": "11.38.0",
"eslint-config-seekingalpha-node": "9.31.0",
"eslint-plugin-array-func": "5.1.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-n": "17.23.2",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-unicorn": "62.0.0",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"prettier": "3.7.4"
"oxlint": "1.42.0",
"prettier": "3.8.1"
}
}