Skip to content

Commit 9e1c008

Browse files
fix: use root-level slashes in .gitignore and .prettierignore (#1696)
## PR Checklist - [x] Addresses an existing open issue: fixes #1693 - [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 Per https://git-scm.com/docs/gitignore#_pattern_format, uses preceding `/` slashes to indicate directories and files that should only be matched at the root. Which is all of them. The Git docs also noted that a trailing `/` makes the pattern only match directories. Since these are known directory names that won't be swapped with files accidentally, I took out any trailing `/`s to keep the files as small as possible. Aside: Per https://lore.kernel.org/git/[email protected], I'm pretty sure the Git docs have a small typo. But per https://lore.kernel.org/git/[email protected] I don't know that it'll get resolved soon. 💖
1 parent 722f045 commit 9e1c008

File tree

6 files changed

+31
-31
lines changed

6 files changed

+31
-31
lines changed

.gitignore

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
coverage*/
2-
lib/
3-
node_modules/
1+
/coverage*
2+
/lib
3+
/node_modules

.prettierignore

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
.all-contributorsrc
2-
.husky/
3-
coverage*/
4-
lib/
5-
pnpm-lock.yaml
1+
/.all-contributorsrc
2+
/.husky
3+
/coverage*
4+
/lib
5+
/pnpm-lock.yaml

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

+10-10
Original file line numberDiff line numberDiff line change
@@ -31,22 +31,22 @@ exports[`expected file changes > .gitignore 1`] = `
3131
"--- a/.gitignore
3232
+++ b/.gitignore
3333
@@ ... @@
34-
-coverage*/
35-
+coverage/
36-
lib/
37-
node_modules/"
34+
-/coverage*
35+
+/coverage
36+
/lib
37+
/node_modules"
3838
`;
3939

4040
exports[`expected file changes > .prettierignore 1`] = `
4141
"--- a/.prettierignore
4242
+++ b/.prettierignore
4343
@@ ... @@
44-
.all-contributorsrc
45-
.husky/
46-
-coverage*/
47-
+coverage/
48-
lib/
49-
pnpm-lock.yaml"
44+
/.all-contributorsrc
45+
/.husky
46+
-/coverage*
47+
+/coverage
48+
/lib
49+
/pnpm-lock.yaml"
5050
`;
5151

5252
exports[`expected file changes > README.md 1`] = `

src/steps/writing/creation/createDotGitignore.test.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ describe("createDotGitignore", () => {
77
const actual = createDotGitignore({ excludeTests: false });
88

99
expect(actual).toMatchInlineSnapshot(`
10-
"coverage/
11-
lib/
12-
node_modules/
10+
"/coverage
11+
/lib
12+
/node_modules
1313
"
1414
`);
1515
});
@@ -18,8 +18,8 @@ describe("createDotGitignore", () => {
1818
const actual = createDotGitignore({ excludeTests: true });
1919

2020
expect(actual).toMatchInlineSnapshot(`
21-
"lib/
22-
node_modules/
21+
"/lib
22+
/node_modules
2323
"
2424
`);
2525
});

src/steps/writing/creation/createDotGitignore.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import { formatIgnoreFile } from "./formatters/formatIgnoreFile.js";
33

44
export function createDotGitignore(options: Pick<Options, "excludeTests">) {
55
return formatIgnoreFile([
6-
...(options.excludeTests ? [] : ["coverage/"]),
7-
"lib/",
8-
"node_modules/",
6+
...(options.excludeTests ? [] : ["/coverage"]),
7+
"/lib",
8+
"/node_modules",
99
]);
1010
}

src/steps/writing/creation/rootFiles.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ export async function createRootFiles(options: Options) {
2727
}),
2828
".nvmrc": `20.12.2\n`,
2929
".prettierignore": formatIgnoreFile([
30-
...(options.excludeAllContributors ? [] : [".all-contributorsrc"]),
31-
".husky/",
32-
...(options.excludeTests ? [] : ["coverage/"]),
33-
"lib/",
34-
"pnpm-lock.yaml",
30+
...(options.excludeAllContributors ? [] : ["/.all-contributorsrc"]),
31+
"/.husky",
32+
...(options.excludeTests ? [] : ["/coverage"]),
33+
"/lib",
34+
"/pnpm-lock.yaml",
3535
]),
3636
".prettierrc.json": await formatJson({
3737
$schema: "http://json.schemastore.org/prettierrc",

0 commit comments

Comments
 (0)