From 2306d1bfeceb7475fd4c4ada093e1540b92bac77 Mon Sep 17 00:00:00 2001 From: Benjamin Titmus Date: Mon, 12 Aug 2024 22:59:10 +0100 Subject: [PATCH] Add `.DS_Store` to `.gitignore` for `cursorless-talon` (#2653) When this is synced to [`cursorless-talon`](https://github.com/cursorless-dev/cursorless-talon) the `.gitignore` in the monorepo doesn't apply so copy the `.DS_Store` ignore for those on macOS to prevent spurious `untracked content` messages in `git`. I don't think the checklist below applies in this case. ## Checklist - [ ] I have added [tests](https://www.cursorless.org/docs/contributing/test-case-recorder/) - [ ] I have updated the [docs](https://github.com/cursorless-dev/cursorless/tree/main/docs) and [cheatsheet](https://github.com/cursorless-dev/cursorless/tree/main/cursorless-talon/src/cheatsheet) - [x] I have not broken the cheatsheet --- .gitignore | 2 +- cursorless-talon/.gitignore | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 7b78b3961c..064fef48ed 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,7 @@ node_modules .vscode-test/ *.vsix /package-lock.json -*.DS_Store +.DS_Store meta.json .luacheckcache diff --git a/cursorless-talon/.gitignore b/cursorless-talon/.gitignore index 97c530fa22..7feddf0a0e 100644 --- a/cursorless-talon/.gitignore +++ b/cursorless-talon/.gitignore @@ -1,3 +1,4 @@ *.flac data/ .vscode/settings.json +.DS_Store