File tree Expand file tree Collapse file tree
eslint-configs/eslint-config-seekingalpha-base Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Change Log
22
3+ ## 11.39.0 - 2025-12-30
4+
5+ - [ breaking] drop ` eslint-plugin-promise ` from oxlint config
6+
37## 11.38.0 - 2025-12-27
48
59- [ new] extend sharable oxlint config with eslint-plugin-import rules
Original file line number Diff line number Diff line change 1+ import esLintConfig from './rules/eslint/index.js' ;
2+ import esLintPluginImport from './rules/eslint-plugin-import/index.js' ;
3+ import esLintPluginUnicorn from './rules/eslint-plugin-unicorn/index.js' ;
14import { ESLintDisabled } from './rules/eslint/oxlint-disabled.js' ;
25import { ESLintPluginPromiseDisabled } from './rules/eslint-plugin-promise/oxlint-disabled.js' ;
36import { ESLintPluginUnicornDisabled } from './rules/eslint-plugin-unicorn/oxlint-disabled.js' ;
47import { ESLintPluginImportDisabled } from './rules/eslint-plugin-import/oxlint-disabled.js' ;
58
6- import config from './index.js' ;
7-
89const oxcConfig = {
9- ...config ,
10+ plugins : {
11+ ...esLintPluginImport . plugins ,
12+ ...esLintPluginUnicorn . plugins ,
13+ } ,
1014 rules : {
11- ...config . rules ,
15+ ...esLintConfig . rules ,
16+ ...esLintPluginImport . rules ,
17+ ...esLintPluginUnicorn . rules ,
18+ // Disabled rules for OXC projects
1219 ...ESLintDisabled ,
1320 ...ESLintPluginImportDisabled ,
1421 ...ESLintPluginPromiseDisabled ,
1522 ...ESLintPluginUnicornDisabled ,
1623 } ,
24+ settings : {
25+ ...esLintPluginImport . settings ,
26+ } ,
1727} ;
1828
1929export default oxcConfig ;
Original file line number Diff line number Diff line change 11{
22 "name" : " eslint-config-seekingalpha-base" ,
3- "version" : " 11.38 .0" ,
3+ "version" : " 11.39 .0" ,
44 "description" : " SeekingAlpha's sharable base ESLint config" ,
55 "main" : " index.js" ,
66 "type" : " module" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " seekingalpha-javascript-style" ,
3- "version" : " 9.86 .0" ,
3+ "version" : " 9.87 .0" ,
44 "description" : " Set of linting rules, guides and best practices for best Javascript code" ,
55 "main" : " index.js" ,
66 "type" : " module" ,
You can’t perform that action at this time.
0 commit comments