-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
112 lines (98 loc) · 2.11 KB
/
Copy path.gitignore
File metadata and controls
112 lines (98 loc) · 2.11 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# .gitignore für Level-2-Projekte / For Level-2 Projects
# Whitelist-Modell: alles ignorieren, nur explizit erlaubtes tracken
# --- macOS-Metadaten / macOS metadata ---
**/.DS_Store
# --- Alles ignorieren ---
/*
/.*
# --- Pflichtdateien: KI-Agenten / Required: AI Agent files ---
!AGENTS.md
!CLAUDE.md
!GEMINI.md
# --- Pflichtdateien: Dokumentation / Required: Documentation ---
!README.md
!STATS.md
!constitution.md
!Lastenheft*.md
!Pflichtenheft.md
!LICENSE
!SECURITY.md
!CONTRIBUTING.md
# --- Pflichtdateien: Git-Konfiguration / Required: Git config ---
!.gitignore
!.gitconfig
!.gitleaks.toml
# --- GitHub / GitHub ---
!.github/
!.github/copilot-instructions.md
!.github/agents/
!.github/agents/**
!.github/prompts/
!.github/prompts/**
!.github/workflows/
!.github/workflows/**
# --- Quellcode / Source code ---
!src/
!tests/
!docs/
!scripts/
!specs/
!requirements/
# --- Build-Artefakte ignorieren / Build artifacts to ignore ---
# Diese sind durch '/*' bereits ignoriert, hier zur Dokumentation:
# bin/
# obj/
# *.user
# *.suo
# packages/
# .vs/
# --- C# / .NET spezifisch ---
# (bereits durch '/*' ignoriert)
# *.nupkg
# *.snupkg
# project.lock.json
# project.fragment.lock.json
# artifacts/
# --- Spec-kit Konfiguration / Spec-kit configuration ---
!.specify/
!.specify/extensions.yml
!.specify/integration.json
!.specify/init-options.json
!.specify/extensions/
!.specify/extensions/**
!.specify/integrations/
!.specify/integrations/**
!.specify/memory/
!.specify/memory/**
!.specify/scripts/
!.specify/scripts/**
!.specify/templates/
!.specify/templates/**
!.specify/presets/
!.specify/presets/**
.specify/presets/.cache/
.specify/presets/.cache/**
!.specify/workflows/
!.specify/workflows/**
# --- Claude Spec-Kit Commands ---
!.claude/
.claude/*
!.claude/commands/
!.claude/commands/**
!.claude/skills/
!.claude/skills/**
# --- Antigravity/Codex Spec-Kit Skills ---
!.agents/
.agents/*
!.agents/skills/
!.agents/skills/**
# --- OpenCode Spec-Kit Commands ---
!.opencode/
.opencode/*
!.opencode/commands/
!.opencode/commands/**
# --- Release Please ---
!release-please-config.json
!.release-please-manifest.json
!CHANGELOG.md
!version.txt