Skip to content

Commit c9ddc5f

Browse files
fix: remove remaining manual cspell word additions (#2067)
## PR Checklist - [x] Addresses an existing open issue: fixes #2062 - [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 _Setup_ mode already populated words as of #1794. I confirmed in JoshuaKGoldberg/eslint-fix-utils#79 that `pnpm lint:spelling` passes without these. 🎁
1 parent 1c82301 commit c9ddc5f

6 files changed

+0
-68
lines changed

src/blocks/blockMarkdownlint.test.ts

-24
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,6 @@ describe("blockMarkdownlint", () => {
1313
expect(creation).toMatchInlineSnapshot(`
1414
{
1515
"addons": [
16-
{
17-
"addons": {
18-
"words": [
19-
"markdownlintignore",
20-
],
21-
},
22-
"block": [Function],
23-
},
2416
{
2517
"addons": {
2618
"sections": {
@@ -104,14 +96,6 @@ describe("blockMarkdownlint", () => {
10496
expect(creation).toMatchInlineSnapshot(`
10597
{
10698
"addons": [
107-
{
108-
"addons": {
109-
"words": [
110-
"markdownlintignore",
111-
],
112-
},
113-
"block": [Function],
114-
},
11599
{
116100
"addons": {
117101
"sections": {
@@ -194,14 +178,6 @@ describe("blockMarkdownlint", () => {
194178
expect(creation).toMatchInlineSnapshot(`
195179
{
196180
"addons": [
197-
{
198-
"addons": {
199-
"words": [
200-
"markdownlintignore",
201-
],
202-
},
203-
"block": [Function],
204-
},
205181
{
206182
"addons": {
207183
"sections": {

src/blocks/blockMarkdownlint.ts

-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { z } from "zod";
22

33
import { base } from "../base.js";
44
import { getPackageDependencies } from "../data/packageData.js";
5-
import { blockCSpell } from "./blockCSpell.js";
65
import { blockDevelopmentDocs } from "./blockDevelopmentDocs.js";
76
import { blockGitHubActionsCI } from "./blockGitHubActionsCI.js";
87
import { blockPackageJson } from "./blockPackageJson.js";
@@ -23,9 +22,6 @@ export const blockMarkdownlint = base.createBlock({
2322

2423
return {
2524
addons: [
26-
blockCSpell({
27-
words: ["markdownlintignore"],
28-
}),
2925
blockDevelopmentDocs({
3026
sections: {
3127
Linting: {

src/blocks/blockReleaseIt.test.ts

-16
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,6 @@ describe("blockReleaseIt", () => {
1111
expect(creation).toMatchInlineSnapshot(`
1212
{
1313
"addons": [
14-
{
15-
"addons": {
16-
"words": [
17-
"apexskier",
18-
],
19-
},
20-
"block": [Function],
21-
},
2214
{
2315
"addons": {
2416
"properties": {
@@ -168,14 +160,6 @@ describe("blockReleaseIt", () => {
168160
expect(creation).toMatchInlineSnapshot(`
169161
{
170162
"addons": [
171-
{
172-
"addons": {
173-
"words": [
174-
"apexskier",
175-
],
176-
},
177-
"block": [Function],
178-
},
179163
{
180164
"addons": {
181165
"properties": {

src/blocks/blockReleaseIt.ts

-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { z } from "zod";
33
import { base } from "../base.js";
44
import { getPackageDependencies } from "../data/packageData.js";
55
import { resolveUses } from "./actions/resolveUses.js";
6-
import { blockCSpell } from "./blockCSpell.js";
76
import { blockPackageJson } from "./blockPackageJson.js";
87
import { blockREADME } from "./blockREADME.js";
98
import { blockRemoveDependencies } from "./blockRemoveDependencies.js";
@@ -29,9 +28,6 @@ export const blockReleaseIt = base.createBlock({
2928

3029
return {
3130
addons: [
32-
blockCSpell({
33-
words: ["apexskier"],
34-
}),
3531
blockPackageJson({
3632
properties: {
3733
devDependencies: getPackageDependencies(

src/blocks/blockTemplatedWith.test.ts

-16
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,6 @@ describe("blockTemplatedWith", () => {
1717
expect(creation).toMatchInlineSnapshot(`
1818
{
1919
"addons": [
20-
{
21-
"addons": {
22-
"words": [
23-
"joshuakgoldberg",
24-
],
25-
},
26-
"block": [Function],
27-
},
2820
{
2921
"addons": {
3022
"notices": [
@@ -52,14 +44,6 @@ describe("blockTemplatedWith", () => {
5244
expect(creation).toMatchInlineSnapshot(`
5345
{
5446
"addons": [
55-
{
56-
"addons": {
57-
"words": [
58-
"joshuakgoldberg",
59-
],
60-
},
61-
"block": [Function],
62-
},
6347
{
6448
"addons": {
6549
"notices": [

src/blocks/blockTemplatedWith.ts

-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { base } from "../base.js";
2-
import { blockCSpell } from "./blockCSpell.js";
32
import { blockREADME } from "./blockREADME.js";
43

54
export const blockTemplatedWith = base.createBlock({
@@ -9,9 +8,6 @@ export const blockTemplatedWith = base.createBlock({
98
produce({ options }) {
109
return {
1110
addons: [
12-
blockCSpell({
13-
words: ["joshuakgoldberg"],
14-
}),
1511
blockREADME({
1612
notices: [
1713
options.owner !== "JoshuaKGoldberg" &&

0 commit comments

Comments
 (0)