-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
96 lines (87 loc) · 3.56 KB
/
Copy path.gitignore
File metadata and controls
96 lines (87 loc) · 3.56 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# Testing Files Generator - ignored paths
#
# This project is a file generator. Its own working tree fills up with
# generated output faster than any other kind of repository, so the rules
# below are deliberately broad on output and deliberately narrow on data.
# ---------------------------------------------------------------------------
# Internal documentation - owner decision, 2026-08-01
# Written in Polish, aimed at development, not at users.
# ---------------------------------------------------------------------------
/docs/
/CLAUDE.md
# ---------------------------------------------------------------------------
# Technical changelog - owner decision, 2026-08-02
#
# It was tracked until that day and its history stays in the repository, which
# the owner decided is not a problem. From here it is an internal file like the
# two above: the user facing CHANGELOG.md is what ships.
#
# Two things move with it and must not be separated from this line. It came off
# englishFiles in internal/guard/ascii_test.go, because a guard that looks for a
# file the repository does not have fails every fresh clone. And CHANGELOG.md no
# longer points a reader at it, because that reader would not find it.
# ---------------------------------------------------------------------------
/CHANGELOG-DEV.md
# ---------------------------------------------------------------------------
# Internal tooling - owner decision, 2026-08-01
#
# Measurement probes and helper scripts we use while building this. Kept
# because they will be needed again, backed up by the owner separately, and
# never shipped.
# ---------------------------------------------------------------------------
/tools/
# ---------------------------------------------------------------------------
# Generated output
# Anything a run produces. Never commit fixtures - regenerate them from the
# recipe instead. That is the whole point of the tool.
# ---------------------------------------------------------------------------
/fixtures/
/out/
/output/
manifest.json
manifest.csv
files.jsonl
# ---------------------------------------------------------------------------
# Build output
# ---------------------------------------------------------------------------
/tfg
/tfg.exe
/tfg-gui
/tfg-gui.exe
/dist/
/build/
# ---------------------------------------------------------------------------
# Test and coverage artifacts
# ---------------------------------------------------------------------------
*.test
*.test.exe
coverage.out
coverage.html
/covdata/
# ---------------------------------------------------------------------------
# Editors and operating systems
# ---------------------------------------------------------------------------
.DS_Store
Thumbs.db
desktop.ini
.idea/
.vscode/
*.swp
*~
# ---------------------------------------------------------------------------
# Local assistant state
# ---------------------------------------------------------------------------
/.claude/settings.local.json
# ---------------------------------------------------------------------------
# Never ignore these
#
# testdata/ holds the golden values that guard byte stability (D11). If a
# broad output rule ever swallows them, the guard test goes green without
# checking anything and nobody notices until users report shifted hashes.
#
# Go keeps test data in a testdata/ directory next to each package, so the
# rules match at any depth. Anchoring them to the repository root would drop
# files like internal/engine/testdata/manifest.json - measured, not assumed.
# ---------------------------------------------------------------------------
!**/testdata/
!**/testdata/**