Skip to content

Commit ddc79c2

Browse files
fix: put blank line after blockESLint explanations
1 parent e1d935f commit ddc79c2

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

src/next/blocks/blockESLint.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -413,6 +413,7 @@ describe("blockESLint", () => {
413413
/*
414414
You should use it!
415415
*/
416+
416417
import eslint from "@eslint/js";
417418
import a from "eslint-plugin-markdown"
418419
import b from "eslint-plugin-regexp"

src/next/blocks/blockESLint.ts

+8-1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,13 @@ export const blockESLint = base.createBlock({
7878
const { explanations, extensions, ignores, imports, rules, settings } =
7979
addons;
8080

81+
const explanation =
82+
explanations.length > 0
83+
? `${explanations
84+
.map((explanation) => `/*\n${explanation}\n*/\n`)
85+
.join("")}\n`
86+
: "";
87+
8188
const importLines = [
8289
'import eslint from "@eslint/js";',
8390
'import tseslint from "typescript-eslint";',
@@ -201,7 +208,7 @@ Each should be shown in VS Code, and can be run manually on the command-line:
201208
}),
202209
],
203210
files: {
204-
"eslint.config.js": `${explanations.map((explanation) => `/*\n${explanation}\n*/\n`).join("")}${importLines.join("\n")}
211+
"eslint.config.js": `${explanation}${importLines.join("\n")}
205212
206213
export default tseslint.config(
207214
{ ignores: [${ignoreLines.join(", ")}] },

0 commit comments

Comments
 (0)