Skip to content

Commit db0ea79

Browse files
fix: remove automerge, tseslint from cspell.json (#2066)
## PR Checklist - [x] Addresses an existing open issue: fixes #2056 - [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 These used to not be in cspell-dicts. They are now. 🎁
1 parent 1c1c8d2 commit db0ea79

File tree

4 files changed

+1
-51
lines changed

4 files changed

+1
-51
lines changed

cspell.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
"Anson",
1414
"apexskier",
1515
"attw",
16-
"automerge",
1716
"boop",
1817
"dbaeumer",
1918
"infile",
@@ -22,7 +21,6 @@
2221
"mshick",
2322
"mtfoley",
2423
"npmjs",
25-
"stefanzweifel",
26-
"tseslint"
24+
"stefanzweifel"
2725
]
2826
}

src/blocks/blockESLint.test.ts

-40
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,6 @@ describe("blockESLint", () => {
1313
expect(creation).toMatchInlineSnapshot(`
1414
{
1515
"addons": [
16-
{
17-
"addons": {
18-
"words": [
19-
"tseslint",
20-
],
21-
},
22-
"block": [Function],
23-
},
2416
{
2517
"addons": {
2618
"sections": {
@@ -142,14 +134,6 @@ describe("blockESLint", () => {
142134
expect(creation).toMatchInlineSnapshot(`
143135
{
144136
"addons": [
145-
{
146-
"addons": {
147-
"words": [
148-
"tseslint",
149-
],
150-
},
151-
"block": [Function],
152-
},
153137
{
154138
"addons": {
155139
"sections": {
@@ -340,14 +324,6 @@ describe("blockESLint", () => {
340324
expect(creation).toMatchInlineSnapshot(`
341325
{
342326
"addons": [
343-
{
344-
"addons": {
345-
"words": [
346-
"tseslint",
347-
],
348-
},
349-
"block": [Function],
350-
},
351327
{
352328
"addons": {
353329
"sections": {
@@ -484,14 +460,6 @@ describe("blockESLint", () => {
484460
expect(creation).toMatchInlineSnapshot(`
485461
{
486462
"addons": [
487-
{
488-
"addons": {
489-
"words": [
490-
"tseslint",
491-
],
492-
},
493-
"block": [Function],
494-
},
495463
{
496464
"addons": {
497465
"sections": {
@@ -618,14 +586,6 @@ describe("blockESLint", () => {
618586
expect(creation).toMatchInlineSnapshot(`
619587
{
620588
"addons": [
621-
{
622-
"addons": {
623-
"words": [
624-
"tseslint",
625-
],
626-
},
627-
"block": [Function],
628-
},
629589
{
630590
"addons": {
631591
"sections": {

src/blocks/blockESLint.ts

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

66
import { base } from "../base.js";
77
import { getPackageDependencies } from "../data/packageData.js";
8-
import { blockCSpell } from "./blockCSpell.js";
98
import { blockDevelopmentDocs } from "./blockDevelopmentDocs.js";
109
import { blockGitHubActionsCI } from "./blockGitHubActionsCI.js";
1110
import { blockPackageJson } from "./blockPackageJson.js";
@@ -132,9 +131,6 @@ export const blockESLint = base.createBlock({
132131

133132
return {
134133
addons: [
135-
blockCSpell({
136-
words: ["tseslint"],
137-
}),
138134
blockDevelopmentDocs({
139135
sections: {
140136
Linting: {

src/blocks/blockRenovate.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 { blockGitHubApps } from "./blockGitHubApps.js";
43

54
export const blockRenovate = base.createBlock({
@@ -9,9 +8,6 @@ export const blockRenovate = base.createBlock({
98
produce() {
109
return {
1110
addons: [
12-
blockCSpell({
13-
words: ["automerge"],
14-
}),
1511
blockGitHubApps({
1612
apps: [
1713
{

0 commit comments

Comments
 (0)