Skip to content

Commit 451db09

Browse files
fix: add /.all-contributorsrc back to .prettierignore again (#2004)
## PR Checklist - [x] Addresses an existing open issue: fixes #2001 - [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 Similar to #838. 🎁
1 parent 04f3999 commit 451db09

4 files changed

+22
-1
lines changed

.prettierignore

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

src/blocks/blockAllContributors.test.ts

+16
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,14 @@ describe("blockAllContributors", () => {
1111
expect(creation).toMatchInlineSnapshot(`
1212
{
1313
"addons": [
14+
{
15+
"addons": {
16+
"ignores": [
17+
"/.all-contributorsrc",
18+
],
19+
},
20+
"block": [Function],
21+
},
1422
{
1523
"addons": {
1624
"badges": [
@@ -104,6 +112,14 @@ describe("blockAllContributors", () => {
104112
expect(creation).toMatchInlineSnapshot(`
105113
{
106114
"addons": [
115+
{
116+
"addons": {
117+
"ignores": [
118+
"/.all-contributorsrc",
119+
],
120+
},
121+
"block": [Function],
122+
},
107123
{
108124
"addons": {
109125
"badges": [

src/blocks/blockAllContributors.ts

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import _ from "lodash";
22

33
import { base, Contributor } from "../base.js";
44
import { ownerContributions } from "../data/contributions.js";
5+
import { blockPrettier } from "./blockPrettier.js";
56
import { blockREADME } from "./blockREADME.js";
67
import { blockRepositorySecrets } from "./blockRepositorySecrets.js";
78
import { createSoloWorkflowFile } from "./files/createSoloWorkflowFile.js";
@@ -15,6 +16,9 @@ export const blockAllContributors = base.createBlock({
1516
const contributions = options.contributors?.length;
1617
return {
1718
addons: [
19+
blockPrettier({
20+
ignores: ["/.all-contributorsrc"],
21+
}),
1822
blockREADME({
1923
badges: [
2024
`<!-- prettier-ignore-start -->

src/blocks/blockCTATransitions.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ describe("blockCTATransitions", () => {
6262
"addons": {
6363
"properties": {
6464
"devDependencies": {
65-
"create-typescript-app": "2.7.3",
65+
"create-typescript-app": "2.8.0",
6666
},
6767
},
6868
},

0 commit comments

Comments
 (0)