@scaleway/eslint-config-react 3.14.6 → 3.15.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 +23 -0
- package/package.json +4 -4
- package/shared.js +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,29 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## 3.15.1 (2023-02-20)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### :package: Chore
|
|
10
|
+
|
|
11
|
+
* **release:** publish ([43bb9f9](https://github.com/scaleway/scaleway-lib/commit/43bb9f9430c294b3cf892f9e82d117e14bbdebd7))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### :bug: Bug Fixes
|
|
15
|
+
|
|
16
|
+
* **deps:** update typescript-eslint monorepo to v5.52.0 ([#1206](https://github.com/scaleway/scaleway-lib/issues/1206)) ([6eda6c4](https://github.com/scaleway/scaleway-lib/commit/6eda6c4616579962443aec5a5778ba0c0ba47f8a))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
## [3.15.0](https://github.com/scaleway/scaleway-lib/compare/@scaleway/eslint-config-react@3.14.6...@scaleway/eslint-config-react@3.15.0) (2023-02-13)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### :gear: Features
|
|
24
|
+
|
|
25
|
+
* **eslint-config:** exclude ts to no-extraneous-dependencies ([#1200](https://github.com/scaleway/scaleway-lib/issues/1200)) ([a9871a2](https://github.com/scaleway/scaleway-lib/commit/a9871a270ef2df1e07e9b1f4b0f21628cded18ac))
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
6
29
|
## 3.14.6 (2023-02-09)
|
|
7
30
|
|
|
8
31
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scaleway/eslint-config-react",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.15.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.10.0",
|
|
21
|
-
"@typescript-eslint/eslint-plugin": "5.
|
|
22
|
-
"@typescript-eslint/parser": "5.
|
|
21
|
+
"@typescript-eslint/eslint-plugin": "5.52.0",
|
|
22
|
+
"@typescript-eslint/parser": "5.52.0",
|
|
23
23
|
"eslint-config-airbnb": "19.0.4",
|
|
24
24
|
"eslint-config-airbnb-typescript": "17.0.0",
|
|
25
25
|
"eslint-config-prettier": "8.6.0",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"eslint": "8.33.0",
|
|
38
38
|
"typescript": "4.9.5"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "b76e45dff6602c566e69343c1ddddfc304d20f92"
|
|
41
41
|
}
|
package/shared.js
CHANGED
|
@@ -39,9 +39,9 @@ module.exports = {
|
|
|
39
39
|
'**/__tests__/**', // jest pattern
|
|
40
40
|
'**/__mocks__/**', // jest pattern
|
|
41
41
|
'**/__stories__/**', // stories pattern
|
|
42
|
-
'test.{js,jsx}', // repos with a single test file
|
|
43
|
-
'test-*.{js,jsx}', // repos with multiple top-level test files
|
|
44
|
-
'**/*{.,_}{test,spec}.{js,jsx}', // tests where the extension or filename suffix denotes that it is a test
|
|
42
|
+
'test.{js,jsx,ts,tsx}', // repos with a single test file
|
|
43
|
+
'test-*.{js,jsx,ts,tsx}', // repos with multiple top-level test files
|
|
44
|
+
'**/*{.,_}{test,spec}.{js,jsx,ts,tsx}', // tests where the extension or filename suffix denotes that it is a test
|
|
45
45
|
'**/jest.config.{js,ts,mjs,mts}', // jest config
|
|
46
46
|
'**/jest.setup.{js,ts,mjs,mts}', // jest setup
|
|
47
47
|
'**/webpack.config.{js,ts,mjs,mts}', // webpack config
|