@scaleway/eslint-config-react 3.16.4 → 3.17.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,18 @@
1
1
  # Change Log
2
2
 
3
+ ## 3.17.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1755](https://github.com/scaleway/scaleway-lib/pull/1755) [`500d5ea`](https://github.com/scaleway/scaleway-lib/commit/500d5ea43b4b99151c58f22c9b593e01e284a410) Thanks [@renovate](https://github.com/apps/renovate)! - Updated dependency `@typescript-eslint/eslint-plugin` to `6.16.0`.
8
+ Updated dependency `@typescript-eslint/parser` to `6.16.0`.
9
+
10
+ ## 3.17.0
11
+
12
+ ### Minor Changes
13
+
14
+ - [#1746](https://github.com/scaleway/scaleway-lib/pull/1746) [`62c3a59`](https://github.com/scaleway/scaleway-lib/commit/62c3a59d12c2eea077dfd48dff72b5c500b51292) Thanks [@johnrazeur](https://github.com/johnrazeur)! - Add react/jsx-key rule
15
+
3
16
  ## 3.16.4
4
17
 
5
18
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scaleway/eslint-config-react",
3
- "version": "3.16.4",
3
+ "version": "3.17.1",
4
4
  "description": "Scaleway React eslint shared config",
5
5
  "keywords": [
6
6
  "eslint",
@@ -18,8 +18,8 @@
18
18
  "license": "MIT",
19
19
  "dependencies": {
20
20
  "@emotion/eslint-plugin": "11.11.0",
21
- "@typescript-eslint/eslint-plugin": "6.15.0",
22
- "@typescript-eslint/parser": "6.15.0",
21
+ "@typescript-eslint/eslint-plugin": "6.16.0",
22
+ "@typescript-eslint/parser": "6.16.0",
23
23
  "eslint-config-airbnb": "19.0.4",
24
24
  "eslint-config-airbnb-typescript": "17.1.0",
25
25
  "eslint-config-prettier": "9.1.0",
package/shared.js CHANGED
@@ -123,5 +123,6 @@ module.exports = {
123
123
  ],
124
124
  'sort-keys': 'off',
125
125
  'no-constant-binary-expression': 'error',
126
+ 'react/jsx-key': 'error',
126
127
  },
127
128
  }