1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# ── Project ────────────────────────────────────────────────────────────────────
# Working/reference material, not part of the published tool.
information/
dist/
# Third-party / other-application assets — never publish these, even if
# information/ is later un-ignored (e.g. to salvage more notes).
information/resources/partialfkr-base-icon.svg # base icon for another app (PartialFKR)
information/resources/app-icon-shape.svg # Apple squircle reference template
# ── Rust ───────────────────────────────────────────────────────────────────────
/target/
# Cargo.lock is intentionally committed — this is a binary crate
**/*.rs.bk # rustfmt backups
*.profraw # coverage instrumentation
# ── Packaging build artifacts ──────────────────────────────────────────────────
# Built installers land under target/ (already ignored); these guard against
# stray copies elsewhere in the tree, plus WiX intermediates and CI scratch dirs.
*.deb
*.rpm
*.msi
*.wixobj
*.wixpdb
/stage/
/staging/
/rendered/
# ── Docker ─────────────────────────────────────────────────────────────────────
docker-compose.override.yml
.env
.env.*
!.env.example
# ── JetBrains IDEs ─────────────────────────────────────────────────────────────
.idea/
*.iml
*.iws
*.ipr
out/
.idea_modules/
# ── Other editors (contributors) ───────────────────────────────────────────────
.vscode/
*.swp
*.swo
*.swn
# ── macOS ──────────────────────────────────────────────────────────────────────
.DS_Store
.AppleDouble
.LSOverride
._*
.Spotlight-V100
.Trashes
.fseventsd
# ── Windows ────────────────────────────────────────────────────────────────────
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
*.lnk
# ── Linux ──────────────────────────────────────────────────────────────────────
*~
.nfs*
# ── Python venvs (local tooling: pefile PE checks, copr-cli trigger) ────────────
.venv/
.copr-venv/