Skip to content

Commit cc8a98d

Browse files
fix: add .allcontributorsrc back to .prettierignore (#838)
## PR Checklist - [x] Addresses an existing open issue: fixes #837 - [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 😢. #806 was perfect. But the tooling appears to not be working properly. fyi @conrmahr - maybe we can try again in a few months?
1 parent 27c1ea9 commit cc8a98d

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.all-contributorsrc
12
coverage*/
23
lib/
34
pnpm-lock.yaml

src/steps/writing/creation/rootFiles.ts

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ export async function createRootFiles(options: Options) {
4848
}),
4949
".nvmrc": `18.17.1\n`,
5050
".prettierignore": formatIgnoreFile([
51+
...(options.excludeContributors ? [] : [".all-contributorsrc"]),
5152
...(options.excludeTests ? [] : ["coverage/"]),
5253
"lib/",
5354
"pnpm-lock.yaml",

0 commit comments

Comments
 (0)