Skip to content

Commit

Permalink
fix: add .allcontributorsrc back to .prettierignore (#838)
Browse files Browse the repository at this point in the history
## 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?
  • Loading branch information
JoshuaKGoldberg committed Sep 19, 2023
1 parent 27c1ea9 commit cc8a98d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.all-contributorsrc
coverage*/
lib/
pnpm-lock.yaml
1 change: 1 addition & 0 deletions src/steps/writing/creation/rootFiles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ export async function createRootFiles(options: Options) {
}),
".nvmrc": `18.17.1\n`,
".prettierignore": formatIgnoreFile([
...(options.excludeContributors ? [] : [".all-contributorsrc"]),
...(options.excludeTests ? [] : ["coverage/"]),
"lib/",
"pnpm-lock.yaml",
Expand Down

0 comments on commit cc8a98d

Please sign in to comment.