Skip to content

Commit a29ef05

Browse files
feat: add addons.explanations to blockESLint (#1864)
## PR Checklist - [x] Addresses an existing open issue: fixes #1849 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md) were taken ## Overview 💖
1 parent f92166a commit a29ef05

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

src/next/blocks/blockESLint.test.ts

+8-1
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,7 @@ describe("blockESLint", () => {
272272
const creation = testBlock(blockESLint, {
273273
addons: {
274274
beforeLint: "Before lint.",
275+
explanations: ["This is a great config!", "You should use it!"],
275276
extensions: [
276277
"a.configs.recommended",
277278
{
@@ -406,7 +407,13 @@ describe("blockESLint", () => {
406407
},
407408
],
408409
"files": {
409-
"eslint.config.js": "import eslint from "@eslint/js";
410+
"eslint.config.js": "/*
411+
This is a great config!
412+
*/
413+
/*
414+
You should use it!
415+
*/
416+
import eslint from "@eslint/js";
410417
import a from "eslint-plugin-markdown"
411418
import b from "eslint-plugin-regexp"
412419
import tseslint from "typescript-eslint";

src/next/blocks/blockESLint.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ export const blockESLint = base.createBlock({
5757
},
5858
addons: {
5959
beforeLint: z.string().optional(),
60+
explanations: z.array(z.string()).default([]),
6061
extensions: z.array(z.union([z.string(), zExtension])).default([]),
6162
ignores: z.array(z.string()).default([]),
6263
imports: z.array(zPackageImport).default([]),
@@ -74,7 +75,8 @@ export const blockESLint = base.createBlock({
7475
};
7576
},
7677
produce({ addons, options }) {
77-
const { extensions, ignores, imports, rules, settings } = addons;
78+
const { explanations, extensions, ignores, imports, rules, settings } =
79+
addons;
7880

7981
const importLines = [
8082
'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:
197199
}),
198200
],
199201
files: {
200-
"eslint.config.js": `${importLines.join("\n")}
202+
"eslint.config.js": `${explanations.map((explanation) => `/*\n${explanation}\n*/\n`).join("")}${importLines.join("\n")}
201203
202204
export default tseslint.config(
203205
{ ignores: [${ignoreLines.join(", ")}] },

0 commit comments

Comments
 (0)