@@ -57,6 +57,7 @@ export const blockESLint = base.createBlock({
57
57
} ,
58
58
addons : {
59
59
beforeLint : z . string ( ) . optional ( ) ,
60
+ explanations : z . array ( z . string ( ) ) . default ( [ ] ) ,
60
61
extensions : z . array ( z . union ( [ z . string ( ) , zExtension ] ) ) . default ( [ ] ) ,
61
62
ignores : z . array ( z . string ( ) ) . default ( [ ] ) ,
62
63
imports : z . array ( zPackageImport ) . default ( [ ] ) ,
@@ -74,7 +75,8 @@ export const blockESLint = base.createBlock({
74
75
} ;
75
76
} ,
76
77
produce ( { addons, options } ) {
77
- const { extensions, ignores, imports, rules, settings } = addons ;
78
+ const { explanations, extensions, ignores, imports, rules, settings } =
79
+ addons ;
78
80
79
81
const importLines = [
80
82
'import eslint from "@eslint/js";' ,
@@ -197,7 +199,7 @@ Each should be shown in VS Code, and can be run manually on the command-line:
197
199
} ) ,
198
200
] ,
199
201
files : {
200
- "eslint.config.js" : `${ importLines . join ( "\n" ) }
202
+ "eslint.config.js" : `${ explanations . map ( ( explanation ) => `/*\n ${ explanation } \n*/\n` ) . join ( "" ) } ${ importLines . join ( "\n" ) }
201
203
202
204
export default tseslint.config(
203
205
{ ignores: [${ ignoreLines . join ( ", " ) } ] },
0 commit comments