Skip to content

Commit

Permalink
chore: use the destructured explanations
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaKGoldberg committed Jan 15, 2025
1 parent b7511ba commit 0e6229d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/next/blocks/blockESLint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ Each should be shown in VS Code, and can be run manually on the command-line:
}),
],
files: {
"eslint.config.js": `${addons.explanations.map((explanation) => `/*\n${explanation}\n*/\n`).join("")}${importLines.join("\n")}
"eslint.config.js": `${explanations.map((explanation) => `/*\n${explanation}\n*/\n`).join("")}${importLines.join("\n")}
export default tseslint.config(
{ ignores: [${ignoreLines.join(", ")}] },
Expand Down

0 comments on commit 0e6229d

Please sign in to comment.