-
-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathblockCSpell.ts
91 lines (86 loc) · 2.12 KB
/
blockCSpell.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
import { getObjectStringsDeep } from "object-strings-deep";
import { z } from "zod";
import { base } from "../base.js";
import { getPackageDependencies } from "../data/packageData.js";
import { resolveBin } from "../utils/resolveBin.js";
import { blockDevelopmentDocs } from "./blockDevelopmentDocs.js";
import { blockGitHubActionsCI } from "./blockGitHubActionsCI.js";
import { blockPackageJson } from "./blockPackageJson.js";
import { blockVSCode } from "./blockVSCode.js";
import { CommandPhase } from "./phases.js";
const filesGlob = `"**" ".github/**/*"`;
export const blockCSpell = base.createBlock({
about: {
name: "CSpell",
},
addons: {
ignores: z.array(z.string()).default([]),
words: z.array(z.string()).default([]),
},
produce({ addons }) {
const { ignores, words } = addons;
return {
addons: [
blockDevelopmentDocs({
sections: {
Linting: {
contents: {
items: [
`- \`pnpm lint:spelling\` ([cspell](https://cspell.org)): Spell checks across all source files`,
],
},
},
},
}),
blockVSCode({
extensions: ["streetsidesoftware.code-spell-checker"],
}),
blockGitHubActionsCI({
jobs: [
{
name: "Lint Spelling",
steps: [{ run: "pnpm lint:spelling" }],
},
],
}),
blockPackageJson({
properties: {
devDependencies: getPackageDependencies("cspell"),
scripts: {
"lint:spelling": `cspell ${filesGlob}`,
},
},
}),
],
files: {
"cspell.json": JSON.stringify({
dictionaries: ["npm", "node", "typescript"],
ignorePaths: [
".github",
"CHANGELOG.md",
"lib",
"node_modules",
"pnpm-lock.yaml",
...ignores,
].sort(),
...(words.length && { words: words.sort() }),
}),
},
};
},
setup({ options }) {
const wordArgs = getObjectStringsDeep(options)
.map((word) => `--words "${word.replaceAll(`"`, " ")}"`)
.join(" ");
return {
scripts: [
{
commands: [
`node ${resolveBin("cspell-populate-words/bin/index.mjs")} ${wordArgs}`,
],
phase: CommandPhase.Process,
},
],
};
},
});