@typeform/eslint-config 7.0.11 → 7.0.13
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/.github/dependabot.yml
CHANGED
|
@@ -1,33 +1,38 @@
|
|
|
1
1
|
version: 2
|
|
2
|
-
|
|
3
2
|
updates:
|
|
4
|
-
- package-ecosystem: npm
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
3
|
+
- package-ecosystem: npm
|
|
4
|
+
schedule:
|
|
5
|
+
interval: weekly
|
|
6
|
+
day: sunday
|
|
7
|
+
groups:
|
|
8
|
+
dependencies:
|
|
9
|
+
patterns:
|
|
10
|
+
- "*"
|
|
11
|
+
directories:
|
|
12
|
+
- "/"
|
|
13
|
+
commit-message:
|
|
14
|
+
prefix: fix(dependabot)
|
|
15
|
+
ignore:
|
|
16
|
+
# eslint v10 removes context.getFilename() which eslint-plugin-react v7.x
|
|
17
|
+
# still relies on, causing "contextOrFilename.getFilename is not a function".
|
|
18
|
+
# Stay on eslint v9.x until eslint-plugin-react ships a compatible release.
|
|
19
|
+
- dependency-name: "eslint"
|
|
20
|
+
versions: [">=10"]
|
|
21
|
+
- dependency-name: semantic-release
|
|
22
|
+
versions:
|
|
23
|
+
- '>=25.0.0'
|
|
24
|
+
cooldown:
|
|
25
|
+
default-days: 7
|
|
26
|
+
exclude:
|
|
27
|
+
- '@typeform/*'
|
|
28
|
+
- package-ecosystem: github-actions
|
|
29
|
+
schedule:
|
|
30
|
+
interval: weekly
|
|
31
|
+
day: sunday
|
|
32
|
+
groups:
|
|
33
|
+
dependencies:
|
|
34
|
+
patterns:
|
|
35
|
+
- "*"
|
|
36
|
+
directory: "/"
|
|
37
|
+
commit-message:
|
|
38
|
+
prefix: build(dependabot)
|
package/.yarnrc
ADDED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typeform/eslint-config",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.13",
|
|
4
4
|
"description": "ESLint configuration for Typeform front-end projects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"eslint-plugin-import": "^2.31.0",
|
|
43
43
|
"eslint-plugin-jest": "^29.15.0",
|
|
44
44
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
45
|
-
"eslint-plugin-n": "^
|
|
45
|
+
"eslint-plugin-n": "^18.0.1",
|
|
46
46
|
"eslint-plugin-promise": "^7.2.1",
|
|
47
47
|
"eslint-plugin-react": "^7.37.2",
|
|
48
48
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"eslint": "^9.0.0",
|
|
61
61
|
"husky": "^9.1.7",
|
|
62
62
|
"jest": "^30.3.0",
|
|
63
|
-
"lint-staged": "^
|
|
63
|
+
"lint-staged": "^17.0.2",
|
|
64
64
|
"prettier": "^3.4.2",
|
|
65
65
|
"semantic-release": "^25.0.3",
|
|
66
66
|
"typescript": "^6.0.3"
|
|
Binary file
|