You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/bug-report.yml
+21-20
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ body:
7
7
attributes:
8
8
label: Current behaviour
9
9
description: Here you can summarise what is going on.
10
-
placeholder: e.g. ESLint marked an unused variable starting with `_` as unused, even though I added this pattern to my `.eslintrc`.
10
+
placeholder: e.g. ESLint marked an unused variable starting with `_` as unused, even though I added this pattern to my `eslint.config.js`.
11
11
validations:
12
12
required: true
13
13
- type: textarea
@@ -25,7 +25,7 @@ body:
25
25
description: Providing a set of concise steps that deterministically reproduce the behaviour helps us investigate what is going on.
26
26
placeholder: |
27
27
For example:
28
-
1. I extended the `@code-pushup/eslint` in my `.eslintrc`.
28
+
1. I imported `@code-pushup/eslint/javascript` in my `eslint.config.js`.
29
29
2. I added explicit options to the `no-unused-vars` rule.
30
30
3. When I opened the `index.ts` file, ESLint highlighted the `no-unused-vars` rule despite the variable `_unused` matching the pattern I explicitly set.
31
31
validations:
@@ -35,23 +35,24 @@ body:
35
35
attributes:
36
36
label: Has this worked for you before?
37
37
description: Provide the last working version.
38
-
placeholder: e.g. 0.5.0
38
+
placeholder: e.g. 0.12.0
39
39
- type: dropdown
40
40
id: config
41
41
attributes:
42
42
label: Which configuration is this related to?
43
43
options:
44
-
- default
45
-
- TypeScript
46
-
- Node.js
47
-
- Angular
48
-
- NgRx
49
-
- Jest
50
-
- Vitest
51
-
- 'React Testing Library'
52
-
- Cypress
53
-
- Playwright
54
-
- Storybook
44
+
- javascript
45
+
- typeScript
46
+
- node
47
+
- angular
48
+
- ngrx
49
+
- graphql
50
+
- jest
51
+
- vitest
52
+
- cypress
53
+
- playwright
54
+
- storybook
55
+
- react-testing-library
55
56
validations:
56
57
required: true
57
58
- type: textarea
@@ -61,34 +62,34 @@ body:
61
62
description: What config version are you running? Include peer dependencies if applicable.
62
63
placeholder: |
63
64
For example:
64
-
`@code-pushup/eslint-config` version 0.5.0
65
+
`@code-pushup/eslint-config` version 0.12.0
65
66
66
67
Peer dependencies:
67
-
- `@typescript-eslint/eslint-plugin` version 7.3.1
68
-
- `@typescript-eslint/parser` version 7.3.1
68
+
- `typescript-eslint` version 8.13.0
69
+
- `eslint-plugin-sonarjs` version 1.0.4
69
70
validations:
70
71
required: true
71
72
- type: input
72
73
id: eslint-version
73
74
attributes:
74
75
label: ESLint version
75
76
description: What ESLint version are you running? (check with `npm list eslint`)
76
-
placeholder: e.g. 8.57.0
77
+
placeholder: e.g. 9.14.0
77
78
validations:
78
79
required: false
79
80
- type: input
80
81
id: ts-version
81
82
attributes:
82
83
label: TypeScript version
83
84
description: What TypeScript version are you running? (check with `npx tsc -v`)
84
-
placeholder: e.g. 5.4.0
85
+
placeholder: e.g. 5.6.3
85
86
validations:
86
87
required: false
87
88
- type: input
88
89
id: node-version
89
90
attributes:
90
91
label: Node version
91
92
description: What Node version are you running? (check with `node -v`)
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/new-config-request.yml
+1-1
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,6 @@ body:
17
17
description: What should the new configuration contain? Listing a set of criteria helps us determine whether the scope of the request was fully addressed.
18
18
placeholder: |
19
19
For example:
20
-
- [ ] A new configuration `react` extends recommended config from `eslint-plugin-react` with additional rules …
20
+
- [ ] A new configuration `vue` extends recommended config from `eslint-plugin-vue` with additional rules …
0 commit comments