eslint-config-henderea 2.0.73 → 2.0.75

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/.eslintrc.js CHANGED
@@ -21,9 +21,6 @@ module.exports = {
21
21
  jsx: true
22
22
  }
23
23
  },
24
- linterOptions: {
25
- reportUnusedDisableDirectives: false
26
- },
27
24
  rules: {
28
25
  indent: [
29
26
  'error',
package/eslint.config.mjs CHANGED
@@ -11,6 +11,11 @@ export default [
11
11
  {
12
12
  files: ['**/*.js', '**/*.mjs', '**/*.cjs', '**/*.jsx', '**/*.ts', '**/*.tsx'],
13
13
  },
14
+ {
15
+ linterOptions: {
16
+ reportUnusedDisableDirectives: false
17
+ }
18
+ },
14
19
  {
15
20
  plugins: {
16
21
  '@typescript-eslint': typescriptEslint,
@@ -31,6 +36,9 @@ export default [
31
36
 
32
37
  parserOptions: {
33
38
  requireConfigFile: false,
39
+ ecmaFeatures: {
40
+ jsx: true
41
+ },
34
42
  },
35
43
  },
36
44
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-henderea",
3
- "version": "2.0.73",
3
+ "version": "2.0.75",
4
4
  "description": "ESLint Config used by henderea",
5
5
  "main": "index.mjs",
6
6
  "author": "henderea",
@@ -23,7 +23,7 @@
23
23
  "@stylistic/eslint-plugin": "^5.2.3",
24
24
  "@typescript-eslint/eslint-plugin": "^8.40.0",
25
25
  "@typescript-eslint/parser": "^8.40.0",
26
- "eslint": "^9.33.0",
26
+ "eslint": "^9.34.0",
27
27
  "eslint-plugin-import": "^2.32.0",
28
28
  "globals": "^16.3.0",
29
29
  "typescript": "^5.9.2",