Skip to content

Commit 9bf2204

Browse files
authored
chore: add type definitions for the eslint-config-eslint package (#19050)
feat: Add type definitions for `eslint-config-eslint` Resolves #19043
1 parent ba098bd commit 9bf2204

18 files changed

+343
-138
lines changed

.github/workflows/ci.yml

+24-5
Original file line numberDiff line numberDiff line change
@@ -114,17 +114,36 @@ jobs:
114114
wdio-logs/*.log
115115
116116
test_types:
117-
name: Types Test
117+
name: Test Types of ${{ matrix.package.name }}
118118
runs-on: ubuntu-latest
119+
120+
strategy:
121+
matrix:
122+
package:
123+
[
124+
{ name: eslint, directory: . },
125+
{
126+
name: eslint-config-eslint,
127+
directory: packages/eslint-config-eslint,
128+
},
129+
{
130+
name: '@eslint/js',
131+
directory: packages/js,
132+
},
133+
]
134+
119135
steps:
120136
- uses: actions/checkout@v4
121137
- uses: actions/setup-node@v4
122138
with:
123139
node-version: "lts/*"
124140
- name: Install Packages
125141
run: npm install
126-
- name: Test eslint types
127-
run: npm run test:types
128-
- name: Test @eslint/js types
142+
143+
- name: Install Packages for ${{ matrix.package.name }}
144+
working-directory: ${{ matrix.package.directory }}
145+
run: npm install
146+
147+
- name: Test types for ${{ matrix.package.name }}
148+
working-directory: ${{ matrix.package.directory }}
129149
run: npm run test:types
130-
working-directory: packages/js

.github/workflows/types-integration.yml

+15-5
Original file line numberDiff line numberDiff line change
@@ -150,20 +150,30 @@ jobs:
150150
are-the-types-wrong:
151151
name: Are the types wrong?
152152
runs-on: ubuntu-latest
153+
154+
strategy:
155+
matrix:
156+
package:
157+
[
158+
{ name: eslint, directory: . },
159+
{
160+
name: eslint-config-eslint,
161+
directory: packages/eslint-config-eslint,
162+
},
163+
]
164+
153165
steps:
154-
- name: Checkout eslint
166+
- name: Checkout ${{ matrix.package.name }}
155167
uses: actions/checkout@v4
156-
with:
157-
path: eslint
158168

159169
- uses: actions/setup-node@v4
160170
with:
161171
node-version: "lts/*"
162172

163173
- name: Install Packages
164-
working-directory: eslint
174+
working-directory: ${{ matrix.package.directory }}
165175
run: npm install
166176

167177
- name: Check validity of type definitions
168-
working-directory: eslint
178+
working-directory: ${{ matrix.package.directory }}
169179
run: npm run lint:types

eslint.config.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@ function createInternalFilesPatterns(pattern = null) {
7070
}));
7171
}
7272

73+
/**
74+
* @type {import("./lib/types/index.js").Linter.Config[]}
75+
*/
7376
module.exports = [
7477
...eslintConfigESLintCJS.map(config => ({
7578
...config,
@@ -296,7 +299,7 @@ module.exports = [
296299
languageOptions: {
297300
parser: tsParser,
298301
parserOptions: {
299-
project: ["tests/lib/types/tsconfig.json", "packages/js/tests/types/tsconfig.json"]
302+
project: ["tests/lib/types/tsconfig.json", "packages/js/tests/types/tsconfig.json", "packages/eslint-config-eslint/tsconfig.json"]
300303
}
301304
},
302305
plugins: {

knip.jsonc

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@
3535
},
3636
// Workspaces with default configs:
3737
"packages/*": {
38-
"ignore": ["tests/types/**"]
38+
"ignore": ["tests/types/**"],
39+
"ignoreDependencies": ["eslint"]
3940
},
4041
"tools/internal-rules": {}
4142
}

packages/eslint-config-eslint/base.js

+15
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ const eslintCommentsPluginConfigs = require("@eslint-community/eslint-plugin-esl
66
const unicorn = require("eslint-plugin-unicorn");
77

88
// extends eslint recommended config
9+
/**
10+
* @type {import("eslint").Linter.Config[]}
11+
*/
912
const jsConfigs = [js.configs.recommended, {
1013
name: "eslint-config-eslint/js",
1114
rules: {
@@ -142,6 +145,9 @@ const jsConfigs = [js.configs.recommended, {
142145
}];
143146

144147
// extends eslint-plugin-jsdoc's recommended config
148+
/**
149+
* @type {import("eslint").Linter.Config[]}
150+
*/
145151
const jsdocConfigs = [jsdoc.configs["flat/recommended"], {
146152
name: "eslint-config-eslint/jsdoc",
147153
settings: {
@@ -234,6 +240,9 @@ const jsdocConfigs = [jsdoc.configs["flat/recommended"], {
234240
}];
235241

236242
// extends eslint-plugin-unicorn's config
243+
/**
244+
* @type {import("eslint").Linter.Config[]}
245+
*/
237246
const unicornConfigs = [{
238247
name: "eslint-config-eslint/unicorn",
239248
plugins: { unicorn },
@@ -253,6 +262,9 @@ const unicornConfigs = [{
253262
}];
254263

255264
// extends @eslint-community/eslint-plugin-eslint-comments's recommended config
265+
/**
266+
* @type {import("eslint").Linter.Config[]}
267+
*/
256268
const eslintCommentsConfigs = [eslintCommentsPluginConfigs.recommended, {
257269
name: "eslint-config-eslint/eslint-comments",
258270
rules: {
@@ -262,6 +274,9 @@ const eslintCommentsConfigs = [eslintCommentsPluginConfigs.recommended, {
262274
}
263275
}];
264276

277+
/**
278+
* @type {import("eslint").Linter.Config[]}
279+
*/
265280
module.exports = [
266281
{ name: "eslint-config-eslint/base", linterOptions: { reportUnusedDisableDirectives: "error" } },
267282
...jsConfigs,

packages/eslint-config-eslint/cjs.js

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
const baseConfigs = require("./base");
44
const { cjsConfigs } = require("./nodejs");
55

6+
/**
7+
* @type {import("eslint").Linter.Config[]}
8+
*/
69
module.exports = [
710
...baseConfigs,
811
...cjsConfigs

0 commit comments

Comments
 (0)