@scaleway/eslint-config-react 3.15.29 → 3.16.1

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,27 @@
1
1
  # Change Log
2
2
 
3
+ ## 3.16.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1662](https://github.com/scaleway/scaleway-lib/pull/1662) [`61470ae`](https://github.com/scaleway/scaleway-lib/commit/61470aec833545a11727a6f13afd13f24e7f6485) Thanks [@renovate](https://github.com/apps/renovate)! - Updated dependency `@typescript-eslint/eslint-plugin` to `6.11.0`.
8
+ Updated dependency `@typescript-eslint/parser` to `6.11.0`.
9
+
10
+ ## 3.16.0
11
+
12
+ ### Minor Changes
13
+
14
+ - [#1637](https://github.com/scaleway/scaleway-lib/pull/1637) [`41a6cb6`](https://github.com/scaleway/scaleway-lib/commit/41a6cb63e2b060b4a941e2b5579557f1358f98f2) Thanks [@johnrazeur](https://github.com/johnrazeur)! - Add no-constant-binary-expression rule to eslint config
15
+
16
+ ### Patch Changes
17
+
18
+ - [#1636](https://github.com/scaleway/scaleway-lib/pull/1636) [`16930c3`](https://github.com/scaleway/scaleway-lib/commit/16930c34cf1fd4f2f49e018b409f715d927e40ff) Thanks [@renovate](https://github.com/apps/renovate)! - Updated dependency `eslint` to `8.53.0`.
19
+
20
+ - [#1639](https://github.com/scaleway/scaleway-lib/pull/1639) [`8fc72fb`](https://github.com/scaleway/scaleway-lib/commit/8fc72fba1999d25f461b8cd4719870ecf98a65af) Thanks [@renovate](https://github.com/apps/renovate)! - Updated dependency `@typescript-eslint/eslint-plugin` to `6.10.0`.
21
+ Updated dependency `@typescript-eslint/parser` to `6.10.0`.
22
+
23
+ - [#1628](https://github.com/scaleway/scaleway-lib/pull/1628) [`dfcb18e`](https://github.com/scaleway/scaleway-lib/commit/dfcb18e04ef93217b7ef2328e77578a3aa578411) Thanks [@renovate](https://github.com/apps/renovate)! - Updated dependency `eslint-plugin-jsx-a11y` to `6.8.0`.
24
+
3
25
  ## 3.15.29
4
26
 
5
27
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scaleway/eslint-config-react",
3
- "version": "3.15.29",
3
+ "version": "3.16.1",
4
4
  "description": "Scaleway React eslint shared config",
5
5
  "keywords": [
6
6
  "eslint",
@@ -18,15 +18,15 @@
18
18
  "license": "MIT",
19
19
  "dependencies": {
20
20
  "@emotion/eslint-plugin": "11.11.0",
21
- "@typescript-eslint/eslint-plugin": "6.9.1",
22
- "@typescript-eslint/parser": "6.9.1",
21
+ "@typescript-eslint/eslint-plugin": "6.11.0",
22
+ "@typescript-eslint/parser": "6.11.0",
23
23
  "eslint-config-airbnb": "19.0.4",
24
24
  "eslint-config-airbnb-typescript": "17.1.0",
25
25
  "eslint-config-prettier": "9.0.0",
26
26
  "eslint-plugin-deprecation": "2.0.0",
27
27
  "eslint-plugin-eslint-comments": "3.2.0",
28
28
  "eslint-plugin-import": "2.29.0",
29
- "eslint-plugin-jsx-a11y": "6.7.1",
29
+ "eslint-plugin-jsx-a11y": "6.8.0",
30
30
  "eslint-plugin-react": "7.33.2",
31
31
  "eslint-plugin-react-hooks": "4.6.0"
32
32
  },
@@ -34,7 +34,7 @@
34
34
  "eslint": ">= 8.5"
35
35
  },
36
36
  "devDependencies": {
37
- "eslint": "8.52.0",
37
+ "eslint": "8.53.0",
38
38
  "typescript": "5.2.2"
39
39
  }
40
40
  }
package/shared.js CHANGED
@@ -122,5 +122,6 @@ module.exports = {
122
122
  },
123
123
  ],
124
124
  'sort-keys': 'off',
125
+ 'no-constant-binary-expression': 'error',
125
126
  },
126
127
  }