@typeform/eslint-config 7.0.2 → 7.0.3
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.
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
version: 2
|
|
2
|
+
|
|
3
|
+
updates:
|
|
4
|
+
- package-ecosystem: npm
|
|
5
|
+
schedule:
|
|
6
|
+
interval: weekly
|
|
7
|
+
day: sunday
|
|
8
|
+
groups:
|
|
9
|
+
dependencies:
|
|
10
|
+
patterns:
|
|
11
|
+
- "*"
|
|
12
|
+
directories:
|
|
13
|
+
- "/"
|
|
14
|
+
commit-message:
|
|
15
|
+
prefix: fix(dependabot)
|
|
16
|
+
ignore:
|
|
17
|
+
# eslint v10 removes context.getFilename() which eslint-plugin-react v7.x
|
|
18
|
+
# still relies on, causing "contextOrFilename.getFilename is not a function".
|
|
19
|
+
# Stay on eslint v9.x until eslint-plugin-react ships a compatible release.
|
|
20
|
+
- dependency-name: "eslint"
|
|
21
|
+
versions: [">=10"]
|
|
22
|
+
|
|
23
|
+
- package-ecosystem: github-actions
|
|
24
|
+
schedule:
|
|
25
|
+
interval: weekly
|
|
26
|
+
day: sunday
|
|
27
|
+
groups:
|
|
28
|
+
dependencies:
|
|
29
|
+
patterns:
|
|
30
|
+
- "*"
|
|
31
|
+
directory: "/"
|
|
32
|
+
commit-message:
|
|
33
|
+
prefix: build(dependabot)
|
|
@@ -18,10 +18,10 @@ jobs:
|
|
|
18
18
|
|
|
19
19
|
steps:
|
|
20
20
|
- name: Check out Git repository
|
|
21
|
-
uses: actions/checkout@
|
|
21
|
+
uses: actions/checkout@v6
|
|
22
22
|
|
|
23
23
|
- name: Set up Node.js
|
|
24
|
-
uses: actions/setup-node@
|
|
24
|
+
uses: actions/setup-node@v6
|
|
25
25
|
with:
|
|
26
26
|
node-version: 22
|
|
27
27
|
|
|
@@ -31,7 +31,7 @@ jobs:
|
|
|
31
31
|
npm config set @typeform:registry https://npm.pkg.github.com/
|
|
32
32
|
|
|
33
33
|
- name: Get yarn cache
|
|
34
|
-
uses: actions/cache@
|
|
34
|
+
uses: actions/cache@v5
|
|
35
35
|
id: yarn-cache
|
|
36
36
|
with:
|
|
37
37
|
path: node_modules
|
|
@@ -18,12 +18,12 @@ jobs:
|
|
|
18
18
|
|
|
19
19
|
steps:
|
|
20
20
|
- name: Check Out Source Code
|
|
21
|
-
uses: actions/checkout@
|
|
21
|
+
uses: actions/checkout@v6
|
|
22
22
|
with:
|
|
23
23
|
fetch-depth: 0
|
|
24
24
|
|
|
25
25
|
- name: Set up Node.js
|
|
26
|
-
uses: actions/setup-node@
|
|
26
|
+
uses: actions/setup-node@v6
|
|
27
27
|
with:
|
|
28
28
|
node-version: ${{ matrix.node-version }}
|
|
29
29
|
|
|
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.3",
|
|
4
4
|
"description": "ESLint configuration for Typeform front-end projects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -35,18 +35,18 @@
|
|
|
35
35
|
},
|
|
36
36
|
"prettier": "./prettier/index.cjs",
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@eslint/js": "^
|
|
38
|
+
"@eslint/js": "^10.0.1",
|
|
39
39
|
"@typescript-eslint/eslint-plugin": "^8.18.1",
|
|
40
40
|
"@typescript-eslint/parser": "^8.18.1",
|
|
41
|
-
"eslint-config-prettier": "^
|
|
41
|
+
"eslint-config-prettier": "^10.1.8",
|
|
42
42
|
"eslint-plugin-import": "^2.31.0",
|
|
43
|
-
"eslint-plugin-jest": "^
|
|
43
|
+
"eslint-plugin-jest": "^29.15.0",
|
|
44
44
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
45
45
|
"eslint-plugin-n": "^17.14.0",
|
|
46
46
|
"eslint-plugin-promise": "^7.2.1",
|
|
47
47
|
"eslint-plugin-react": "^7.37.2",
|
|
48
|
-
"eslint-plugin-react-hooks": "^
|
|
49
|
-
"globals": "^
|
|
48
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
49
|
+
"globals": "^17.4.0",
|
|
50
50
|
"typescript-eslint": "^8.46.2",
|
|
51
51
|
"yarn": "^1.22.22"
|
|
52
52
|
},
|
|
@@ -55,12 +55,12 @@
|
|
|
55
55
|
"typescript": ">=5"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@semantic-release/exec": "^
|
|
58
|
+
"@semantic-release/exec": "^7.1.0",
|
|
59
59
|
"@semantic-release/npm": "^13.1.1",
|
|
60
|
-
"eslint": "^9.
|
|
60
|
+
"eslint": "^9.0.0",
|
|
61
61
|
"husky": "^9.1.7",
|
|
62
|
-
"jest": "^
|
|
63
|
-
"lint-staged": "^
|
|
62
|
+
"jest": "^30.3.0",
|
|
63
|
+
"lint-staged": "^16.4.0",
|
|
64
64
|
"prettier": "^3.4.2",
|
|
65
65
|
"semantic-release": "^25.0.3",
|
|
66
66
|
"typescript": "^5.7.2"
|
|
Binary file
|