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
22 changes: 13 additions & 9 deletions eslint-configs/eslint-config-seekingalpha-base/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,38 +1,42 @@
# Change Log

## 11.39.1 - 2025-12-30
## 11.40.0 - 2026-02-02

- [new] extend oxlint config

## 11.39.1 - 2026-01-30

- [breaking] drop `eslint-plugin-promise` from oxlint config

## 11.39.0 - 2025-12-30
## 11.39.0 - 2026-01-30

- [breaking] drop `eslint-plugin-promise` from oxlint config

## 11.38.0 - 2025-12-27
## 11.38.0 - 2026-01-26

- [new] extend sharable oxlint config with eslint-plugin-import rules

## 11.37.0 - 2025-12-27
## 11.37.0 - 2026-01-27

- [breaking] drop `eslint-plugin-array-func`

## 11.36.1 - 2025-12-26
## 11.36.1 - 2026-01-26

- [new] extend sharable oxlint config with eslint-plugin-unicorn rules

## 11.36.0 - 2025-12-26
## 11.36.0 - 2026-01-26

- [new] extend sharable oxlint config with eslint-plugin-unicorn rules

## 11.35.0 - 2025-12-26
## 11.35.0 - 2026-01-26

- [new] extend sharable oxlint config with eslint-plugin-promise rules

## 11.34.0 - 2025-12-26
## 11.34.0 - 2026-01-26

- [new] add sharable oxlint config with base eslint rules

## 11.33.0 - 2025-12-20
## 11.33.0 - 2026-01-20

- [new] expose eslint OXC config

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-seekingalpha-base",
"version": "11.39.1",
"version": "11.40.0",
"description": "SeekingAlpha's sharable base ESLint config",
"main": "index.js",
"type": "module",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"import/no-webpack-loader-syntax": "error",
"import/prefer-default-export": "off",
"import/unambiguous": "off",
"import/no-relative-parent-imports": "off",
"import/no-self-import": "error",
"import/consistent-type-specifier-style": ["error", "prefer-top-level"],
"import/first": "error",
Expand All @@ -36,6 +37,7 @@
"import/named": "error",
"import/no-duplicates": "error",
"import/no-namespace": "error",
"import/no-nodejs-modules": "off",
"import/extensions": [
"error",
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export const ESLintPluginImportDisabled = {
'import/no-webpack-loader-syntax': 'off',
'import/prefer-default-export': 'off',
'import/unambiguous': 'off',
'import/no-relative-parent-imports': 'off',
'import/no-self-import': 'off',
'import/consistent-type-specifier-style': 'off',
'import/first': 'off',
Expand All @@ -21,6 +22,7 @@ export const ESLintPluginImportDisabled = {
'import/named': 'off',
'import/no-duplicates': 'off',
'import/no-namespace': 'off',
'import/no-nodejs-modules': 'off',
'import/extensions': 'off',
'import/no-unassigned-import': 'off',
'import/no-named-default': 'off',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,13 @@
"no-warning-comments": "off",
"no-with": "error",
"operator-assignment": ["error", "never"],
"prefer-const": [
"error",
{
"destructuring": "any",
"ignoreReadBeforeAssign": false
}
],
"prefer-destructuring": [
"error",
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ export const ESLintDisabled = {
'no-warning-comments': 'off',
'no-with': 'off',
'operator-assignment': 'off',
'prefer-const': 'off',
'prefer-destructuring': 'off',
'prefer-exponentiation-operator': 'off',
'prefer-numeric-literals': 'off',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -667,14 +667,7 @@ export default {
'sort-imports': 'off',

// https://eslint.org/docs/rules/sort-keys
'sort-keys': [
'off',
'asc',
{
caseSensitive: false,
natural: true,
},
],
'sort-keys': 'off',

// https://eslint.org/docs/rules/sort-vars
'sort-vars': [
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.28.0 - 2026-02-02

- [new] extend oxlint config

## 10.27.0 - 2026-01-27

- [new] add sharable oxlint config with eslint-plugin-jsx-a11y and eslint-plugin-react-hooks rules
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-seekingalpha-react",
"version": "10.27.2",
"version": "10.28.0",
"description": "SeekingAlpha's sharable React.js ESLint config",
"main": "index.js",
"type": "module",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
}
],
"react/jsx-props-no-spread-multi": "error",
"react/no-multi-comp": "off",
"react/jsx-no-target-blank": [
"error",
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ export const ESLintPluginReactDisabled = {
'react/no-find-dom-node': 'off',
'react/no-is-mounted': 'off',
'react/no-namespace': 'off',
'react/no-multi-comp': 'off',
'react/no-redundant-should-component-update': 'off',
'react/no-render-return-value': 'off',
'react/no-set-state': 'off',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "seekingalpha-javascript-style",
"version": "9.87.0",
"version": "9.88.0",
"description": "Set of linting rules, guides and best practices for best Javascript code",
"main": "index.js",
"type": "module",
Expand Down