@scaleway/eslint-config-react 3.4.50 → 3.5.2
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 +26 -0
- package/package.json +5 -5
- package/shared.js +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,32 @@
|
|
|
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.5.2 (2022-08-19)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @scaleway/eslint-config-react
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## 3.5.1 (2022-08-16)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **deps:** update typescript-eslint monorepo to v5.33.1 ([#918](https://github.com/scaleway/scaleway-lib/issues/918)) ([7e671cc](https://github.com/scaleway/scaleway-lib/commit/7e671cc102de3a95409c5b590d6be7c4b501be08))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
## [3.5.0](https://github.com/scaleway/scaleway-lib/compare/@scaleway/eslint-config-react@3.4.50...@scaleway/eslint-config-react@3.5.0) (2022-08-10)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Features
|
|
27
|
+
|
|
28
|
+
* **eslint-config:** disable prefer-default-export ([#913](https://github.com/scaleway/scaleway-lib/issues/913)) ([7d311a6](https://github.com/scaleway/scaleway-lib/commit/7d311a64d03d5d600d429f4b70d011319134a92b))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
6
32
|
## [3.4.50](https://github.com/scaleway/scaleway-lib/compare/@scaleway/eslint-config-react@3.4.49...@scaleway/eslint-config-react@3.4.50) (2022-08-09)
|
|
7
33
|
|
|
8
34
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scaleway/eslint-config-react",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.2",
|
|
4
4
|
"description": "Scaleway React eslint shared config",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
},
|
|
18
18
|
"license": "MIT",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@typescript-eslint/eslint-plugin": "5.33.
|
|
21
|
-
"@typescript-eslint/parser": "5.33.
|
|
20
|
+
"@typescript-eslint/eslint-plugin": "5.33.1",
|
|
21
|
+
"@typescript-eslint/parser": "5.33.1",
|
|
22
22
|
"eslint-config-airbnb": "19.0.4",
|
|
23
23
|
"eslint-config-airbnb-typescript": "17.0.0",
|
|
24
24
|
"eslint-config-prettier": "8.5.0",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"eslint": ">= 8.5"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"eslint": "8.
|
|
35
|
+
"eslint": "8.22.0",
|
|
36
36
|
"typescript": "4.7.4"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "b03101ec99e4bc59cf8f6c35e04c94672b394bf3"
|
|
39
39
|
}
|
package/shared.js
CHANGED
|
@@ -21,6 +21,8 @@ module.exports = {
|
|
|
21
21
|
'newlines-between': 'never',
|
|
22
22
|
},
|
|
23
23
|
],
|
|
24
|
+
// We allow named and default export
|
|
25
|
+
'import/prefer-default-export': 'off',
|
|
24
26
|
// This allows us to reenable ForOfStatement.
|
|
25
27
|
// While this has been disabled in airbnb configuration it's native to the browsers we support
|
|
26
28
|
// so the original argument about weight is no up to date https://github.com/airbnb/javascript/issues/1271
|