@geops/eslint-config-react 1.5.0-beta.6 → 1.5.0-beta.7

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/README.md CHANGED
@@ -28,4 +28,7 @@ Then, create a `.eslintrc.json` file in the root of your project with the follow
28
28
  }
29
29
  ```
30
30
 
31
+ ## Updating rules
32
+
33
+ If you have to updatethe list of custom rules DO NOT FORGET to add them in `./rules.js` files and in the `flat/rules.mjs` file.
31
34
 
package/flat/index.mjs CHANGED
@@ -9,6 +9,7 @@ import pluginCypress from "eslint-plugin-cypress/flat";
9
9
  import globals from "globals";
10
10
  import reactHooks from "eslint-plugin-react-hooks";
11
11
  import rules from "./rules.mjs";
12
+ import reactCompiler from "eslint-plugin-react-compiler";
12
13
 
13
14
  export default [
14
15
  {
@@ -37,6 +38,7 @@ export default [
37
38
  react.configs.flat.recommended,
38
39
  react.configs.flat["jsx-runtime"], // Avoid having the React-in-jsx-scope rule activated
39
40
  reactHooks.configs["recommended-latest"],
41
+ reactCompiler.configs.recommended,
40
42
  jsxA11y.flatConfigs.recommended,
41
43
  perfectionist.configs["recommended-alphabetical"],
42
44
  prettier,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geops/eslint-config-react",
3
- "version": "1.5.0-beta.6",
3
+ "version": "1.5.0-beta.7",
4
4
  "dependencies": {
5
5
  "eslint-config-prettier": "^10.1.1",
6
6
  "eslint-plugin-cypress": "^4.2.0",