@robot-inventor/eslint-config 13.0.2 → 13.1.0

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/dist/index.d.ts CHANGED
@@ -1,8 +1,7 @@
1
- import { type Config } from "eslint/config";
2
- declare const eslintConfigNoJSDoc: Config[];
3
- declare const eslintConfig: Config[];
4
- declare const eslintReactConfig: Config[];
5
- declare const eslintReactConfigNoJSDoc: Config[];
6
- declare const eslintNextConfig: Config[];
7
- declare const eslintNextConfigNoJSDoc: Config[];
1
+ declare const eslintConfigNoJSDoc: import("eslint/config").ConfigObject[];
2
+ declare const eslintConfig: import("eslint/config").ConfigObject[];
3
+ declare const eslintReactConfig: import("eslint/config").ConfigObject[];
4
+ declare const eslintReactConfigNoJSDoc: import("eslint/config").ConfigObject[];
5
+ declare const eslintNextConfig: import("eslint/config").ConfigObject[];
6
+ declare const eslintNextConfigNoJSDoc: import("eslint/config").ConfigObject[];
8
7
  export { eslintConfigNoJSDoc, eslintConfig, eslintReactConfig, eslintReactConfigNoJSDoc, eslintNextConfig, eslintNextConfigNoJSDoc };
package/dist/index.js CHANGED
@@ -149,7 +149,13 @@ const eslintReactConfigBase = defineConfig(reactHooks.configs.flat["recommended-
149
149
  "@stylistic/jsx-curly-brace-presence": ["error", "never"],
150
150
  "react-compiler/react-compiler": "error"
151
151
  }
152
- }, reactDoctor.configs.recommended);
152
+ }, reactDoctor.configs.recommended, {
153
+ settings: {
154
+ "react-doctor": {
155
+ capabilities: ["react-compiler"]
156
+ }
157
+ }
158
+ });
153
159
  const eslintReactConfig = defineConfig(...eslintConfig, ...eslintReactConfigBase);
154
160
  const eslintReactConfigNoJSDoc = defineConfig(...eslintConfigNoJSDoc, ...eslintReactConfigBase);
155
161
  const { configs: nextEslintConfigs, rules: nextEslintRules } = $nextPlugin;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robot-inventor/eslint-config",
3
- "version": "13.0.2",
3
+ "version": "13.1.0",
4
4
  "description": "My ESLint config preset",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -33,26 +33,26 @@
33
33
  "provenance": true
34
34
  },
35
35
  "dependencies": {
36
- "@eslint-react/eslint-plugin": "^5.17.3",
37
- "@eslint-react/kit": "^5.17.3",
36
+ "@eslint-react/eslint-plugin": "^5.18.6",
37
+ "@eslint-react/kit": "^5.18.6",
38
38
  "@eslint/js": "^10.0.1",
39
- "@next/eslint-plugin-next": "^16.2.11",
39
+ "@next/eslint-plugin-next": "^16.3.3",
40
40
  "@stylistic/eslint-plugin": "^5.10.0",
41
- "@typescript-eslint/types": "^8.65.0",
42
- "eslint": "^10.7.0",
41
+ "@typescript-eslint/types": "^8.68.0",
42
+ "eslint": "^10.9.1",
43
43
  "eslint-config-prettier": "^10.1.8",
44
44
  "eslint-import-resolver-node": "^0.4.0",
45
45
  "eslint-import-resolver-typescript": "^4.4.5",
46
46
  "eslint-plugin-import-x": "^4.17.1",
47
- "eslint-plugin-jsdoc": "^63.2.0",
47
+ "eslint-plugin-jsdoc": "^64.2.1",
48
48
  "eslint-plugin-react-compiler": "^19.0.0-beta-ebf51a3-20250411",
49
- "eslint-plugin-react-doctor": "^0.8.3",
49
+ "eslint-plugin-react-doctor": "^0.9.12",
50
50
  "eslint-plugin-react-hooks": "^7.1.1",
51
- "typescript-eslint": "^8.65.0"
51
+ "typescript-eslint": "^8.68.0"
52
52
  },
53
53
  "devDependencies": {
54
- "@changesets/changelog-github": "^0.7.0",
55
- "@changesets/cli": "^2.31.1",
54
+ "@changesets/changelog-github": "^1.0.0",
55
+ "@changesets/cli": "^3.0.1",
56
56
  "@eslint-types/jsdoc": "^48.2.2",
57
57
  "@eslint-types/typescript-eslint": "^7.5.0",
58
58
  "@robot-inventor/tsconfig-base": "^7.1.0",
@@ -60,7 +60,7 @@
60
60
  "typescript": "^6.0.3"
61
61
  },
62
62
  "overrides": {
63
- "@typescript-eslint/types": "^8.65.0",
63
+ "@typescript-eslint/types": "^8.68.0",
64
64
  "zod-validation-error": "^5.0.0"
65
65
  }
66
66
  }