File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Rust build artifacts
2+ /target /
3+ ** /* .rs.bk
4+ * .pdb
5+
6+ # Cargo files
7+ # Cargo.lock is tracked for binary applications but ignored for libraries
8+ # Since tmpltool is a binary, Cargo.lock should be committed
9+ # Cargo.lock
10+
11+ # Test outputs in root directory
12+ /output.txt
13+ /test_output.txt
14+ /* .txt
15+ # But keep example templates
16+ ! examples /* .tmpl
17+ ! examples /* .txt
18+ ! examples /README.md
19+
20+ # IDE files - JetBrains (IntelliJ, RustRover, etc.)
21+ .idea /
22+ * .iml
23+ * .iws
24+ * .ipr
25+ .idea_modules /
26+
27+ # IDE files - Visual Studio Code
28+ .vscode /
29+ * .code-workspace
30+
31+ # IDE files - Vim
32+ [._ ]* .s [a-v ][a-z ]
33+ [._ ]* .sw [a-p ]
34+ [._ ]s [a-rt-v ][a-z ]
35+ [._ ]ss [a-gi-z ]
36+ [._ ]sw [a-p ]
37+
38+ # IDE files - Emacs
39+ \# * \#
40+ /.emacs.desktop
41+ /.emacs.desktop.lock
42+ * .elc
43+ auto-save-list
44+ tramp
45+ . \# *
46+
47+ # Backup files
48+ * .bak
49+ * .gho
50+ * .ori
51+ * .orig
52+ * .tmp
53+
54+ # OS files - macOS
55+ .DS_Store
56+ .DS_Store ?
57+ ._ *
58+ .Spotlight-V100
59+ .Trashes
60+
61+ # OS files - Windows
62+ ehthumbs.db
63+ Thumbs.db
64+ desktop.ini
65+
66+ # OS files - Linux
67+ * ~
68+
69+ # Profiling
70+ * .profraw
71+ * .profdata
72+
73+ # Coverage reports
74+ * .gcda
75+ * .gcno
76+ * .lcov
77+ coverage /
78+ tarpaulin-report.html
79+ cobertura.xml
80+
81+
82+ # Local environment
83+ .env
84+ .env.local
85+ .env. * .local
86+
87+ # Generated by tests
88+ /tmp /
You can’t perform that action at this time.
0 commit comments