-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy path.gitignore
More file actions
54 lines (46 loc) · 977 Bytes
/
.gitignore
File metadata and controls
54 lines (46 loc) · 977 Bytes
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
# Ignore everything by default (whitelist approach).
# This is critical for a security research tool — prevents
# accidental commit of browser data files (Cookies, Login Data, etc.)
*
# Allow git to traverse directories
!*/
# === Source code ===
!*.go
!go.mod
!go.sum
# === Native (C) source for embedded ABE payload ===
# Only source files are tracked; compiled binaries (*.bin) are
# intentionally ignored and rebuilt by CI via `make payload`.
!*.c
!*.h
!Makefile
!Makefile.frag
# === Project root config ===
!.gitattributes
!.gitignore
!.golangci.yml
!.goreleaser.yml
!.typos.toml
!CLAUDE.md
!LICENSE
# === Documentation ===
!README.md
!CONTRIBUTING.md
!CODE_OF_CONDUCT.md
!LOGO.png
# === GitHub ===
!.github/workflows/*.yml
!.github/ISSUE_TEMPLATE/*.md
!.github/ISSUE_TEMPLATE/*.yml
!.github/PULL_REQUEST_TEMPLATE.md
!.github/dependabot.yml
# === RFCs ===
!rfcs/*.md
# === Always ignore (override !*/) ===
.git/
.idea/
.vscode/
vendor/
result/
results/
.DS_Store