diff options
| author | Craig Jennings <c@cjennings.net> | 2026-06-06 05:55:29 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-06-06 05:55:29 -0500 |
| commit | 5e956a8a2e76122c42c5dc7ecbb4180b8340497e (patch) | |
| tree | deea061e8cea45f31da97f8021bc243c0e7fdff4 /.gitignore | |
| download | duet-5e956a8a2e76122c42c5dc7ecbb4180b8340497e.tar.gz duet-5e956a8a2e76122c42c5dc7ecbb4180b8340497e.zip | |
chore: scaffold the Duet package skeleton
Initial skeleton for Duet, a two-pane file commander built on dirvish/dired: the package header and entry-command stub, the README, and the test directory. Pre-alpha — no functionality yet.
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a6b2d71 --- /dev/null +++ b/.gitignore @@ -0,0 +1,22 @@ +# Build artifacts +*.elc +*.eln +/.eldev/ +/eln-cache/ + +# Emacs cruft +*~ +\#*\# +.\#* + +# Coverage / test output +/coverage/ +/.coverage/ + +# Local planning + AI tooling (kept out of the public repo). +# The design spec carries multi-round review history with contributor +# attribution; track it publicly only after anonymizing to roles. +/.ai/ +/inbox/ +/todo.org +/docs/design/ |
