Skip to content

Commit 8bd2b02

Browse files
chore: use formatIgnoreFile in remaining blocks (#1860)
## PR Checklist - [x] Addresses an existing open issue: fixes #1853 - [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 Resists the urge to move the common `.sort()` inside the function, since not every consumer does that. 💖
1 parent 493e076 commit 8bd2b02

File tree

4 files changed

+23
-16
lines changed

4 files changed

+23
-16
lines changed

src/next/blocks/blockMarkdownlint.test.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ describe("blockMarkdownlint", () => {
7878
".markdownlint.json": "{"extends":"markdownlint/style/prettier","first-line-h1":false,"no-inline-html":false}",
7979
".markdownlintignore": ".github/CODE_OF_CONDUCT.md
8080
CHANGELOG.md
81-
node_modules/",
81+
node_modules/
82+
",
8283
},
8384
"scripts": [
8485
{
@@ -169,7 +170,8 @@ describe("blockMarkdownlint", () => {
169170
".markdownlintignore": ".github/CODE_OF_CONDUCT.md
170171
CHANGELOG.md
171172
lib/
172-
node_modules/",
173+
node_modules/
174+
",
173175
},
174176
"scripts": [
175177
{

src/next/blocks/blockMarkdownlint.ts

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { z } from "zod";
22

3+
import { formatIgnoreFile } from "../../steps/writing/creation/formatters/formatIgnoreFile.js";
34
import { base } from "../base.js";
45
import { blockCSpell } from "./blockCSpell.js";
56
import { blockDevelopmentDocs } from "./blockDevelopmentDocs.js";
@@ -66,14 +67,14 @@ export const blockMarkdownlint = base.createBlock({
6667
"first-line-h1": false,
6768
"no-inline-html": false,
6869
}),
69-
".markdownlintignore": [
70-
".github/CODE_OF_CONDUCT.md",
71-
"CHANGELOG.md",
72-
"node_modules/",
73-
...ignores,
74-
]
75-
.sort()
76-
.join("\n"),
70+
".markdownlintignore": formatIgnoreFile(
71+
[
72+
".github/CODE_OF_CONDUCT.md",
73+
"CHANGELOG.md",
74+
"node_modules/",
75+
...ignores,
76+
].sort(),
77+
),
7778
},
7879
scripts: [
7980
{

src/next/blocks/blockPrettier.test.ts

+6-3
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,8 @@ describe("blockPrettier", () => {
100100
},
101101
".prettierignore": "/.husky
102102
/lib
103-
/pnpm-lock.yaml",
103+
/pnpm-lock.yaml
104+
",
104105
".prettierrc.json": "{"$schema":"http://json.schemastore.org/prettierrc","useTabs":true}",
105106
},
106107
"scripts": [
@@ -211,7 +212,8 @@ describe("blockPrettier", () => {
211212
},
212213
".prettierignore": "/.husky
213214
/lib
214-
/pnpm-lock.yaml",
215+
/pnpm-lock.yaml
216+
",
215217
".prettierrc.json": "{"$schema":"http://json.schemastore.org/prettierrc","useTabs":true}",
216218
},
217219
"scripts": [
@@ -340,7 +342,8 @@ describe("blockPrettier", () => {
340342
".prettierignore": "/.husky
341343
/lib
342344
/pnpm-lock.yaml
343-
generated",
345+
generated
346+
",
344347
".prettierrc.json": "{"$schema":"http://json.schemastore.org/prettierrc","overrides":[{"files":".nvmrc","options":{"parser":"yaml"}}],"plugins":["prettier-plugin-curly","prettier-plugin-packagejson","prettier-plugin-sh"],"useTabs":true}",
345348
},
346349
"scripts": [

src/next/blocks/blockPrettier.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { z } from "zod";
22

3+
import { formatIgnoreFile } from "../../steps/writing/creation/formatters/formatIgnoreFile.js";
34
import { base } from "../base.js";
45
import { blockCSpell } from "./blockCSpell.js";
56
import { blockDevelopmentDocs } from "./blockDevelopmentDocs.js";
@@ -96,9 +97,9 @@ pnpm format --write
9697
".gitignore": "_\n",
9798
"pre-commit": ["npx lint-staged\n", { mode: 0x777 }],
9899
},
99-
".prettierignore": ["/.husky", "/lib", "/pnpm-lock.yaml", ...ignores]
100-
.sort()
101-
.join("\n"),
100+
".prettierignore": formatIgnoreFile(
101+
["/.husky", "/lib", "/pnpm-lock.yaml", ...ignores].sort(),
102+
),
102103
".prettierrc.json": JSON.stringify({
103104
$schema: "http://json.schemastore.org/prettierrc",
104105
...(overrides.length && { overrides: overrides.sort() }),

0 commit comments

Comments
 (0)