-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
39 lines (31 loc) · 1.49 KB
/
.gitignore
File metadata and controls
39 lines (31 loc) · 1.49 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
# ── OS & editor files ──────────────────────────────────────────────────────────
.DS_Store
Thumbs.db
.idea/
.vscode/
*.swp
*.swo
*~
# ── Environment & secrets ──────────────────────────────────────────────────────
# Prevent accidental commit of local env overrides or credential files.
.env
.env.*
*.env
!*.env.example
# ── Workflow run artifacts ─────────────────────────────────────────────────────
# Files generated locally when running or testing workflow tools.
# Security scan outputs
*.sarif
gosec-results.sarif
trivy-results.sarif
# SBOM and license reports (generated by go-security / anchore/sbom-action)
sbom.spdx.json
sbom.*.json
licenses.txt
# Nancy dependency list (generated by `go list -json -m all`)
go.list
# ── Logs ───────────────────────────────────────────────────────────────────────
*.log
# ── Temporary files ────────────────────────────────────────────────────────────
tmp/
temp/