Skip to content

Commit 3bd0f36

Browse files
fix: ignore .all-contributorsrc in cspell.json (#1694)
## PR Checklist - [x] Addresses an existing open issue: fixes #1691 - [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 💖
1 parent e630661 commit 3bd0f36

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

cspell.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"ignorePaths": [
44
"./coverage*",
55
"./script/__snapshots__",
6+
".all-contributorsrc",
67
".github",
78
"CHANGELOG.md",
89
"lib",

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

+1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ exports[`expected file changes > cspell.json 1`] = `
7171
"ignorePaths": [
7272
- "./coverage*",
7373
- "./script/__snapshots__",
74+
".all-contributorsrc",
7475
".github",
7576
"CHANGELOG.md",
7677
+ "coverage",

src/steps/writing/creation/rootFiles.ts

+1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
9595
"cspell.json": await formatJson({
9696
dictionaries: ["typescript"],
9797
ignorePaths: [
98+
...(options.excludeAllContributors ? [] : [".all-contributorsrc"]),
9899
".github",
99100
"CHANGELOG.md",
100101
...(options.excludeTests ? [] : ["coverage"]),

0 commit comments

Comments
 (0)