Skip to content

Commit 1320f29

Browse files
feat: enable ESLint settings.vitest.typecheck (#1960)
## PR Checklist - [x] Addresses an existing open issue: fixes #1847 - [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 Removes quotes from all the `describe()`s I could. Blocks and Inputs unfortunately are objects, not functions, so they're still not allowed. 🎁
1 parent c60027f commit 1320f29

18 files changed

+54
-33
lines changed

eslint.config.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,10 @@ export default tseslint.config(
7272
"object-shorthand": "error",
7373
"operator-assignment": "error",
7474
},
75-
settings: { perfectionist: { partitionByComment: true, type: "natural" } },
75+
settings: {
76+
perfectionist: { partitionByComment: true, type: "natural" },
77+
vitest: { typecheck: true },
78+
},
7679
},
7780
{ extends: [tseslint.configs.disableTypeChecked], files: ["**/*.md/*.ts"] },
7881
{

src/blocks/blockESLint.ts

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

55
import { base } from "../base.js";
66
import { getPackageDependencies } from "../data/packageData.js";
7+
import { sortObject } from "../utils/sortObject.js";
78
import { blockCSpell } from "./blockCSpell.js";
89
import { blockDevelopmentDocs } from "./blockDevelopmentDocs.js";
910
import { blockGitHubActionsCI } from "./blockGitHubActionsCI.js";
@@ -241,7 +242,8 @@ function printExtension(extension: z.infer<typeof zExtension>) {
241242
extension.linterOptions &&
242243
`linterOptions: ${JSON.stringify(extension.linterOptions)}`,
243244
extension.rules && `rules: ${printExtensionRules(extension.rules)},`,
244-
extension.settings && `settings: ${JSON.stringify(extension.settings)},`,
245+
extension.settings &&
246+
`settings: ${JSON.stringify(sortObject(extension.settings))},`,
245247
"}",
246248
]
247249
.filter(Boolean)

src/blocks/blockVitest.test.ts

+18-3
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,11 @@ describe("blockVitest", () => {
8282
"specifier": "vitest",
8383
},
8484
],
85+
"settings": {
86+
"vitest": {
87+
"typecheck": true,
88+
},
89+
},
8590
},
8691
"block": [Function],
8792
},
@@ -94,7 +99,7 @@ describe("blockVitest", () => {
9499
95100
const message = "Yay, testing!";
96101
97-
describe("greet", () => {
102+
describe(greet, () => {
98103
it("logs to the console once when message is provided as a string", () => {
99104
const logger = vi.spyOn(console, "log").mockImplementation(() => undefined);
100105
@@ -315,6 +320,11 @@ describe("blockVitest", () => {
315320
"specifier": "vitest",
316321
},
317322
],
323+
"settings": {
324+
"vitest": {
325+
"typecheck": true,
326+
},
327+
},
318328
},
319329
"block": [Function],
320330
},
@@ -327,7 +337,7 @@ describe("blockVitest", () => {
327337
328338
const message = "Yay, testing!";
329339
330-
describe("greet", () => {
340+
describe(greet, () => {
331341
it("logs to the console once when message is provided as a string", () => {
332342
const logger = vi.spyOn(console, "log").mockImplementation(() => undefined);
333343
@@ -569,6 +579,11 @@ describe("blockVitest", () => {
569579
"specifier": "vitest",
570580
},
571581
],
582+
"settings": {
583+
"vitest": {
584+
"typecheck": true,
585+
},
586+
},
572587
},
573588
"block": [Function],
574589
},
@@ -581,7 +596,7 @@ describe("blockVitest", () => {
581596
582597
const message = "Yay, testing!";
583598
584-
describe("greet", () => {
599+
describe(greet, () => {
585600
it("logs to the console once when message is provided as a string", () => {
586601
const logger = vi.spyOn(console, "log").mockImplementation(() => undefined);
587602

src/blocks/blockVitest.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@ Calls to \`console.log\`, \`console.warn\`, and other console methods will cause
7979
],
8080
ignores: ["coverage", "**/*.snap"],
8181
imports: [{ source: "@vitest/eslint-plugin", specifier: "vitest" }],
82+
settings: {
83+
vitest: { typecheck: true },
84+
},
8285
}),
8386
blockExampleFiles({
8487
files: {
@@ -88,7 +91,7 @@ import { greet } from "./greet.js";
8891
8992
const message = "Yay, testing!";
9093
91-
describe("greet", () => {
94+
describe(greet, () => {
9295
it("logs to the console once when message is provided as a string", () => {
9396
const logger = vi.spyOn(console, "log").mockImplementation(() => undefined);
9497

src/data/packageData.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ vi.mock("node:module", () => ({
1313
}),
1414
}));
1515

16-
describe("getPackageDependencies", () => {
16+
describe(getPackageDependencies, () => {
1717
it("returns a devDependency when it exists", () => {
1818
const actual = getPackageDependencies("package-dev-dep");
1919

src/options/getUsageFromReadme.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { describe, expect, it } from "vitest";
22

33
import { getUsageFromReadme } from "./getUsageFromReadme.js";
44

5-
describe("getUsageFromReadme", () => {
5+
describe(getUsageFromReadme, () => {
66
it("returns undefined when ## Usage is not found", () => {
77
const usage = getUsageFromReadme("## Other");
88

src/options/parsePackageAuthor.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { describe, expect, it } from "vitest";
22

33
import { parsePackageAuthor } from "./parsePackageAuthor.js";
44

5-
describe("parsePackageAuthor", () => {
5+
describe(parsePackageAuthor, () => {
66
it.each([
77
[{}, {}],
88
[{ author: "abc123" }, { author: "abc123" }],

src/options/readAllContributors.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ vi.mock("../inputs/inputFromOctokit.js", () => ({
2222

2323
const { take } = createMockSystems();
2424

25-
describe("readAllContributors", () => {
25+
describe(readAllContributors, () => {
2626
it("returns contributors from .all-contributorsrc when it can be read", async () => {
2727
const contributors = ["a", "b", "c"];
2828
mockInputFromFileJSON.mockResolvedValueOnce({ contributors });

src/options/readDefaultsFromReadme.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ vi.mock("./getUsageFromReadme.js", () => ({
1818
},
1919
}));
2020

21-
describe("readDefaultsFromReadme", () => {
21+
describe(readDefaultsFromReadme, () => {
2222
describe("explainer", () => {
2323
it("defaults to undefined when it cannot be found", async () => {
2424
const explainer = await readDefaultsFromReadme(

src/options/readDescription.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ vi.mock("../data/packageData.js", () => ({
1212
},
1313
}));
1414

15-
describe("readDescription", () => {
15+
describe(readDescription, () => {
1616
it("returns undefined when the description matches the current package.json description", async () => {
1717
const existing = "Same description.";
1818

src/options/readDescriptionFromReadme.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { describe, expect, it } from "vitest";
22

33
import { readDescriptionFromReadme } from "./readDescriptionFromReadme.js";
44

5-
describe("readDescriptionFromReadme", () => {
5+
describe(readDescriptionFromReadme, () => {
66
it("returns undefined when the paragraph starter is not found", async () => {
77
const description = await readDescriptionFromReadme(() =>
88
Promise.resolve(""),

src/options/readDocumentation.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { describe, expect, it } from "vitest";
22

33
import { readDocumentation } from "./readDocumentation.js";
44

5-
describe("finalize", () => {
5+
describe(readDocumentation, () => {
66
it("returns undefined when no .github/DEVELOPMENT.md exists", async () => {
77
const documentation = await readDocumentation(() =>
88
Promise.resolve(undefined),

src/options/readFileAsJson.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ vi.mock("node:fs/promises", () => ({
1010
},
1111
}));
1212

13-
describe("readFileAsJson", () => {
13+
describe(readFileAsJson, () => {
1414
it("returns the file's parsed contents when it exists", async () => {
1515
const data = { abc: 123 };
1616

src/options/readFileSafe.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ vi.mock("node:fs/promises", () => ({
1010
},
1111
}));
1212

13-
describe("readFundingIfExists", () => {
13+
describe(readFileSafe, () => {
1414
it("outputs the file content as string when it exists", async () => {
1515
mockReadFile.mockResolvedValue("File content as string");
1616
const result = await readFileSafe("/path/to/file.ext", "fallback");

src/options/readGitHubEmail.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ vi.mock("./readFileSafe.js", () => ({
1010
},
1111
}));
1212

13-
describe("readGitHubEmail", () => {
13+
describe(readGitHubEmail, () => {
1414
it("returns undefined when it cannot be found", async () => {
1515
mockReadFileSafe.mockResolvedValue("nothing.");
1616

src/options/readGuide.test.ts

+12-14
Original file line numberDiff line numberDiff line change
@@ -10,29 +10,27 @@ vi.mock("./readFileSafe.js", () => ({
1010
},
1111
}));
1212

13-
describe("readGuide", () => {
14-
describe("guide", () => {
15-
it("defaults to undefined when .github/DEVELOPMENT.md cannot be found", async () => {
16-
mockReadFileSafe.mockResolvedValue("");
13+
describe(readGuide, () => {
14+
it("defaults to undefined when .github/DEVELOPMENT.md cannot be found", async () => {
15+
mockReadFileSafe.mockResolvedValue("");
1716

18-
const guide = await readGuide();
17+
const guide = await readGuide();
1918

20-
expect(guide).toBeUndefined();
21-
});
19+
expect(guide).toBeUndefined();
20+
});
2221

23-
it("reads the href and title when the tag exists", async () => {
24-
mockReadFileSafe.mockResolvedValue(`# Development
22+
it("reads the href and title when the tag exists", async () => {
23+
mockReadFileSafe.mockResolvedValue(`# Development
2524
2625
> If you'd like a more guided walkthrough, see [Contributing to a create-typescript-app Repository](https://www.joshuakgoldberg.com/blog/contributing-to-a-create-typescript-app-repository).
2726
> It'll walk you through the common activities you'll need to contribute.
2827
`);
2928

30-
const guide = await readGuide();
29+
const guide = await readGuide();
3130

32-
expect(guide).toEqual({
33-
href: "https://www.joshuakgoldberg.com/blog/contributing-to-a-create-typescript-app-repository",
34-
title: "Contributing to a create-typescript-app Repository",
35-
});
31+
expect(guide).toEqual({
32+
href: "https://www.joshuakgoldberg.com/blog/contributing-to-a-create-typescript-app-repository",
33+
title: "Contributing to a create-typescript-app Repository",
3634
});
3735
});
3836
});

src/options/readLogoSizing.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ vi.mock("image-size", () => ({
1212

1313
const src = "img.jpg";
1414

15-
describe("readLogoSizing", () => {
15+
describe(readLogoSizing, () => {
1616
it("returns undefined when imageSize throws an error", () => {
1717
mockImageSize.mockImplementationOnce(() => {
1818
throw new Error("Oh no!");

src/utils/tryCatchLazyValueAsync.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { describe, expect, it, vi } from "vitest";
22

33
import { tryCatchLazyValueAsync } from "./tryCatchLazyValueAsync.js";
44

5-
describe("tryCatchLazyValueAsync", () => {
5+
describe(tryCatchLazyValueAsync, () => {
66
it("does not run get when it has not been called", () => {
77
const get = vi.fn();
88

0 commit comments

Comments
 (0)