Skip to content

Commit 772f34f

Browse files
feat: don't add n/no-missing-import if usage doesn't need it (#1862)
## PR Checklist - [x] Addresses an existing open issue: fixes #1850 - [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 💖
1 parent f3e5bf8 commit 772f34f

File tree

3 files changed

+107
-19
lines changed

3 files changed

+107
-19
lines changed

script/__snapshots__/migrate-test-e2e.ts.snap

-13
Original file line numberDiff line numberDiff line change
@@ -195,19 +195,6 @@ exports[`expected file changes > eslint.config.js 1`] = `
195195
// Stylistic concerns that don't interfere with Prettier
196196
"logical-assignment-operators": [
197197
"error",
198-
@@ ... @@ export default tseslint.config(
199-
{
200-
extends: [tseslint.configs.disableTypeChecked],
201-
files: ["**/*.md/*.ts"],
202-
+ rules: {
203-
+ "n/no-missing-import": [
204-
+ "error",
205-
+ { allowModules: ["create-typescript-app"] },
206-
+ ],
207-
+ },
208-
},
209-
{
210-
extends: [vitest.configs.recommended],"
211198
`;
212199
213200
exports[`expected file changes > knip.json 1`] = `
+99
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
import { testBlock } from "create-testers";
2+
import { describe, expect, test, vi } from "vitest";
3+
4+
import { blockESLintNode } from "./blockESLintNode.js";
5+
import { optionsBase } from "./options.fakes.js";
6+
7+
vi.mock("../utils/resolveBin.js", () => ({
8+
resolveBin: (bin: string) => `path/to/${bin}`,
9+
}));
10+
11+
describe("blockESLintNode", () => {
12+
test("when options.usage does not have a repository import", () => {
13+
const creation = testBlock(blockESLintNode, {
14+
options: { ...optionsBase, usage: `...` },
15+
});
16+
17+
expect(creation).toMatchInlineSnapshot(`
18+
{
19+
"addons": [
20+
{
21+
"addons": {
22+
"extensions": [
23+
"n.configs["flat/recommended"]",
24+
{
25+
"extends": [
26+
"tseslint.configs.disableTypeChecked",
27+
],
28+
"files": [
29+
"**/*.md/*.ts",
30+
],
31+
},
32+
],
33+
"imports": [
34+
{
35+
"source": "eslint-plugin-n",
36+
"specifier": "n",
37+
},
38+
],
39+
},
40+
"block": [Function],
41+
},
42+
],
43+
}
44+
`);
45+
});
46+
47+
test("when options.usage does have a repository import", () => {
48+
const creation = testBlock(blockESLintNode, {
49+
options: {
50+
...optionsBase,
51+
usage: `\`\`\`ts
52+
import { greet } from "${optionsBase.repository}";
53+
54+
greet();
55+
\`\`\`
56+
`,
57+
},
58+
});
59+
60+
expect(creation).toMatchInlineSnapshot(`
61+
{
62+
"addons": [
63+
{
64+
"addons": {
65+
"extensions": [
66+
"n.configs["flat/recommended"]",
67+
{
68+
"extends": [
69+
"tseslint.configs.disableTypeChecked",
70+
],
71+
"files": [
72+
"**/*.md/*.ts",
73+
],
74+
"rules": {
75+
"n/no-missing-import": [
76+
"error",
77+
{
78+
"allowModules": [
79+
"test-repository",
80+
],
81+
},
82+
],
83+
},
84+
},
85+
],
86+
"imports": [
87+
{
88+
"source": "eslint-plugin-n",
89+
"specifier": "n",
90+
},
91+
],
92+
},
93+
"block": [Function],
94+
},
95+
],
96+
}
97+
`);
98+
});
99+
});

src/next/blocks/blockESLintNode.ts

+8-6
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,14 @@ export const blockESLintNode = base.createBlock({
1414
{
1515
extends: ["tseslint.configs.disableTypeChecked"],
1616
files: ["**/*.md/*.ts"],
17-
rules: {
18-
"n/no-missing-import": [
19-
"error",
20-
{ allowModules: [options.repository] },
21-
],
22-
},
17+
...(options.usage?.includes(`from "${options.repository}`) && {
18+
rules: {
19+
"n/no-missing-import": [
20+
"error",
21+
{ allowModules: [options.repository] },
22+
],
23+
},
24+
}),
2325
},
2426
],
2527
imports: [{ source: "eslint-plugin-n", specifier: "n" }],

0 commit comments

Comments
 (0)