-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
99 lines (82 loc) · 1.31 KB
/
.gitignore
File metadata and controls
99 lines (82 loc) · 1.31 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
# Rust
/target/
# Note: Cargo.lock IS committed for applications (reproducible builds)
# Only libraries should ignore Cargo.lock
# Node
node_modules/
frontend/dist/
frontend/.vite/
# Environment
.env
.env.local
.env.*.local
# i18n builder local config (may contain API keys)
.ampel-i18n.yaml
# IDE
.idea/
.vscode/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Logs
*.log
npm-debug.log*
# Build artifacts
*.pdb
# Database
*.db
*.sqlite
# Coverage
coverage/
*.lcov
# Claude
.claude/
# Claude Flow generated files
.claude/settings.local.json
.mcp.json
claude-flow.config.json
.swarm/
.hive-mind/
.claude-flow/
.agentdb/
memory/
coordination/
memory/claude-flow-data.json
memory/sessions/*
!memory/sessions/README.md
memory/agents/*
!memory/agents/README.md
coordination/memory_bank/*
coordination/subtasks/*
coordination/orchestration/*
*.db
*.db-journal
*.db-wal
*.sqlite
*.sqlite-journal
*.sqlite-wal
claude-flow
# Removed Windows wrapper files per user request
hive-mind-prompt-*.txt
# Ralph
.ralph/
ralph
# agentic-qe generated files
.agentic-qe
aqe
# Prevent undefined directory from misconfigured CARGO_HOME/RUSTUP_HOME
undefined/
# Coverage output directories
/coverage/
/frontend/coverage/
# Coverage report files
*.profraw
*.profdata
cobertura.xml
lcov.info
tarpaulin-report.html
# Test result files
test-results.json