eslint-config-seekingalpha-react 9.0.0 → 9.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Change Log
2
2
 
3
+ ## 9.0.2 - 2025-03-09
4
+
5
+ - [breaking] migrate to ESM and make flat config default
6
+
7
+ ## 9.0.1 - 2025-03-09
8
+
9
+ - [breaking] migrate to ESM and make flat config default
10
+
3
11
  ## 9.0.0 - 2025-03-09
4
12
 
5
13
  - [breaking] migrate to ESM and make flat config default
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-seekingalpha-react",
3
- "version": "9.0.0",
3
+ "version": "9.0.2",
4
4
  "description": "SeekingAlpha's sharable React.js ESLint config",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -8,7 +8,7 @@ export default {
8
8
  react: reactPlugin,
9
9
  },
10
10
  rules: {
11
- ...jsxConfig.rules,
12
- ...reactConfig.rules,
11
+ ...jsxConfig,
12
+ ...reactConfig,
13
13
  },
14
14
  };
@@ -1,4 +1,4 @@
1
- import config from '../config';
1
+ import config from '../config.js';
2
2
 
3
3
  // https://github.com/yannickcr/eslint-plugin-react#jsx-specific-rules
4
4
  export default {