@@ -6,6 +6,9 @@ const eslintCommentsPluginConfigs = require("@eslint-community/eslint-plugin-esl
6
6
const unicorn = require ( "eslint-plugin-unicorn" ) ;
7
7
8
8
// extends eslint recommended config
9
+ /**
10
+ * @type {import("eslint").Linter.Config[] }
11
+ */
9
12
const jsConfigs = [ js . configs . recommended , {
10
13
name : "eslint-config-eslint/js" ,
11
14
rules : {
@@ -142,6 +145,9 @@ const jsConfigs = [js.configs.recommended, {
142
145
} ] ;
143
146
144
147
// extends eslint-plugin-jsdoc's recommended config
148
+ /**
149
+ * @type {import("eslint").Linter.Config[] }
150
+ */
145
151
const jsdocConfigs = [ jsdoc . configs [ "flat/recommended" ] , {
146
152
name : "eslint-config-eslint/jsdoc" ,
147
153
settings : {
@@ -234,6 +240,9 @@ const jsdocConfigs = [jsdoc.configs["flat/recommended"], {
234
240
} ] ;
235
241
236
242
// extends eslint-plugin-unicorn's config
243
+ /**
244
+ * @type {import("eslint").Linter.Config[] }
245
+ */
237
246
const unicornConfigs = [ {
238
247
name : "eslint-config-eslint/unicorn" ,
239
248
plugins : { unicorn } ,
@@ -253,6 +262,9 @@ const unicornConfigs = [{
253
262
} ] ;
254
263
255
264
// extends @eslint -community/eslint-plugin-eslint-comments's recommended config
265
+ /**
266
+ * @type {import("eslint").Linter.Config[] }
267
+ */
256
268
const eslintCommentsConfigs = [ eslintCommentsPluginConfigs . recommended , {
257
269
name : "eslint-config-eslint/eslint-comments" ,
258
270
rules : {
@@ -262,6 +274,9 @@ const eslintCommentsConfigs = [eslintCommentsPluginConfigs.recommended, {
262
274
}
263
275
} ] ;
264
276
277
+ /**
278
+ * @type {import("eslint").Linter.Config[] }
279
+ */
265
280
module . exports = [
266
281
{ name : "eslint-config-eslint/base" , linterOptions : { reportUnusedDisableDirectives : "error" } } ,
267
282
...jsConfigs ,
0 commit comments