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
4 changes: 4 additions & 0 deletions eslint-configs/eslint-config-seekingalpha-base/CHANGELOG.md
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
# Change Log

## 11.58.0 - 2026-05-15

- [new] extend oxlint config

## 11.57.0 - 2026-05-12

- [new] extend oxlint config
Expand Down
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-seekingalpha-base",
"version": "11.57.0",
"version": "11.58.0",
"description": "SeekingAlpha's sharable base ESLint config",
"main": "index.js",
"type": "module",
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,6 +32,7 @@ export default {
'no-ex-assign': 'error',
'no-fallthrough': 'error',
'no-func-assign': 'error',
'no-implicit-globals': 'error',
'no-import-assign': 'error',
'no-inline-comments': 'off',
'no-inner-declarations': 'error',
Expand DownExpand Up@@ -364,6 +365,13 @@ export default {
},
],
'operator-assignment': ['error', 'never'],
'prefer-arrow-callback': [
'error',
{
allowNamedFunctions: false,
allowUnboundThis: true,
},
],
'prefer-const': [
'error',
{
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -26,6 +26,7 @@ export const ESLintDisabled = {
'no-ex-assign': 'off',
'no-fallthrough': 'off',
'no-func-assign': 'off',
'no-implicit-globals': 'off',
'no-import-assign': 'off',
'no-inline-comments': 'off',
'no-inner-declarations': 'off',
Expand DownExpand Up@@ -161,6 +162,7 @@ export const ESLintDisabled = {
'no-with': 'off',
'object-shorthand': 'off',
'operator-assignment': 'off',
'prefer-arrow-callback': 'off',
'prefer-const': 'off',
'prefer-destructuring': 'off',
'prefer-exponentiation-operator': 'off',
Expand Down
4 changes: 4 additions & 0 deletions eslint-configs/eslint-config-seekingalpha-react/CHANGELOG.md
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
# Change Log

## 10.38.0 - 2026-05-15

- [new] extend oxlint config

## 10.37.0 - 2026-05-12

- [new] extend oxlint config
Expand Down
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-seekingalpha-react",
"version": "10.37.0",
"version": "10.38.0",
"description": "SeekingAlpha's sharable React.js ESLint config",
"main": "index.js",
"type": "module",
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -11,7 +11,7 @@ export default {
"input[type='image']": [],
},
],
'anchor-ambiguous-text': 'off',
'jsx-a11y/anchor-ambiguous-text': 'off',
'jsx-a11y/anchor-has-content': 'off',
'jsx-a11y/anchor-is-valid': [
'error',
Expand All@@ -33,6 +33,7 @@ export default {
'jsx-a11y/aria-unsupported-elements': 'error',
'jsx-a11y/autocomplete-valid': 'error',
'jsx-a11y/click-events-have-key-events': 'error',
'jsx-a11y/control-has-associated-label': 'error',
'jsx-a11y/heading-has-content': [
'error',
{
Expand DownExpand Up@@ -101,6 +102,19 @@ export default {
},
],
'jsx-a11y/no-distracting-elements': 'error',
'jsx-a11y/no-noninteractive-element-interactions': [
'error',
{
handlers: [
'onClick',
'onMouseDown',
'onMouseUp',
'onKeyPress',
'onKeyDown',
'onKeyUp',
],
},
],
'jsx-a11y/no-noninteractive-element-to-interactive-role': [
'error',
{
Expand All@@ -127,6 +141,12 @@ export default {
td: ['gridcell'],
},
],
'jsx-a11y/no-interactive-element-to-noninteractive-role': [
'error',
{
tr: ['none', 'presentation'],
},
],
'jsx-a11y/no-noninteractive-tabindex': [
'error',
{
Expand Down
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
export const ESLintPluginA11YDisabled = {
'jsx-a11y/alt-text': 'off',
'anchor-ambiguous-text': 'off',
'jsx-a11y/anchor-ambiguous-text': 'off',
'jsx-a11y/anchor-has-content': 'off',
'jsx-a11y/anchor-is-valid': 'off',
'jsx-a11y/aria-activedescendant-has-tabindex': 'off',
Expand All@@ -10,6 +10,7 @@ export const ESLintPluginA11YDisabled = {
'jsx-a11y/aria-unsupported-elements': 'off',
'jsx-a11y/autocomplete-valid': 'off',
'jsx-a11y/click-events-have-key-events': 'off',
'jsx-a11y/control-has-associated-label': 'error',
'jsx-a11y/heading-has-content': 'off',
'jsx-a11y/html-has-lang': 'off',
'jsx-a11y/iframe-has-title': 'off',
Expand All@@ -22,7 +23,9 @@ export const ESLintPluginA11YDisabled = {
'jsx-a11y/no-aria-hidden-on-focusable': 'off',
'jsx-a11y/no-autofocus': 'off',
'jsx-a11y/no-distracting-elements': 'off',
'jsx-a11y/no-noninteractive-element-interactions': 'off',
'jsx-a11y/no-noninteractive-element-to-interactive-role': 'off',
'jsx-a11y/no-interactive-element-to-noninteractive-role': 'off',
'jsx-a11y/no-noninteractive-tabindex': 'off',
'jsx-a11y/no-redundant-roles': 'off',
'jsx-a11y/no-static-element-interactions': 'off',
Expand Down