@typeform/eslint-config 7.0.10 → 7.0.12

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.
@@ -1,33 +1,38 @@
1
1
  version: 2
2
-
3
2
  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)
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)
@@ -30,11 +30,11 @@ jobs:
30
30
  - name: Set up
31
31
  run: yarn
32
32
 
33
- - name: Lint
34
- run: yarn lint
35
-
36
33
  - name: Build
37
34
  run: yarn build
38
35
 
36
+ - name: Lint
37
+ run: yarn lint
38
+
39
39
  - name: Test
40
40
  run: yarn test
package/.yarnrc ADDED
@@ -0,0 +1,2 @@
1
+ ignore-scripts true
2
+ save-exact true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typeform/eslint-config",
3
- "version": "7.0.10",
3
+ "version": "7.0.12",
4
4
  "description": "ESLint configuration for Typeform front-end projects",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",