From 220a796e4bd3aef01678a82af0268eaf4e379a88 Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Wed, 10 Aug 2022 18:34:44 -0400 Subject: [PATCH 1/2] chore(website): add a 'good conscience' exclusion list to sponsors --- tools/generate-sponsors.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/generate-sponsors.ts b/tools/generate-sponsors.ts index 2893bbcb1e3c..2028a11a98a9 100644 --- a/tools/generate-sponsors.ts +++ b/tools/generate-sponsors.ts @@ -108,6 +108,10 @@ const excludedNames = new Set([ 'java', 'Loyalty Leo', 'Penalty.com', + + // These names are of organizations we cannot in good conscience link to. + // If you disagree with a name on this list, please email a maintainer. + "Christian Healthcare Ministries" // #5440 ]); async function requestGraphql(key: keyof typeof queries): Promise { From 3e1bcd43add7ac80317f3a012da804e6aff4c643 Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Thu, 11 Aug 2022 10:15:28 -0400 Subject: [PATCH 2/2] fix: yarn format --- tools/generate-sponsors.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/generate-sponsors.ts b/tools/generate-sponsors.ts index 2028a11a98a9..4f05e353f123 100644 --- a/tools/generate-sponsors.ts +++ b/tools/generate-sponsors.ts @@ -111,7 +111,7 @@ const excludedNames = new Set([ // These names are of organizations we cannot in good conscience link to. // If you disagree with a name on this list, please email a maintainer. - "Christian Healthcare Ministries" // #5440 + 'Christian Healthcare Ministries', // #5440 ]); async function requestGraphql(key: keyof typeof queries): Promise {