-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitignore
More file actions
177 lines (142 loc) · 4.13 KB
/
Copy path.gitignore
File metadata and controls
177 lines (142 loc) · 4.13 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
# =============================================================================
# RustChat .gitignore
# =============================================================================
# -----------------------------------------------------------------------------
# Build artifacts
# -----------------------------------------------------------------------------
# Rust
target/
debug/
release/
*.rlib
*.rmeta
*.d
# Node.js / Frontend
node_modules/
.pnpm-store/
.yarn/cache
.pnp.*
frontend/dist/
frontend/coverage/
docs/.vitepress/dist/
docs/.vitepress/cache/
# -----------------------------------------------------------------------------
# AI and internal tooling
# -----------------------------------------------------------------------------
.claude/
.codex/
.kimi/
.specify/
.agents/
.agent.workflows/
.agent.history/
.agent.cache/
.antigravitycli/
.antigravity/
antigravity/
previous-analyses/*
!previous-analyses/_TEMPLATE/
!previous-analyses/_TEMPLATE/**
skills-lock.json
# -----------------------------------------------------------------------------
# Internal QA artifacts and archives (not for public repo)
# -----------------------------------------------------------------------------
checklists/
archive/
# -----------------------------------------------------------------------------
# IDE and editors
# -----------------------------------------------------------------------------
.idea/
.vscode/
*.swp
*.swo
*~
*.sublime-*
*.code-workspace
.cursor/
.history/
.nova/
*.iml
# -----------------------------------------------------------------------------
# Environment and secrets
# -----------------------------------------------------------------------------
.env
.env.local
.env.*.local
.env-old-*
secrets/
# -----------------------------------------------------------------------------
# OS files
# -----------------------------------------------------------------------------
.DS_Store
Thumbs.db
desktop.ini
# -----------------------------------------------------------------------------
# Logs
# -----------------------------------------------------------------------------
*.log
logs/
# -----------------------------------------------------------------------------
# Test and coverage artifacts
# -----------------------------------------------------------------------------
*.gcno
*.gcda
coverage/
test-results/
playwright-report/
blob-report/
frontend/test-results/
frontend/playwright-report/
# -----------------------------------------------------------------------------
# Package manager and build caches
# -----------------------------------------------------------------------------
.eslintcache
.stylelintcache
.prettiercache
*.tsbuildinfo
.turbo/
.cache/
# -----------------------------------------------------------------------------
# Docker and deployment
# -----------------------------------------------------------------------------
docker/*.Dockerfile.local
docker-compose.override.yml
# -----------------------------------------------------------------------------
# Mattermost (local compatibility checkout)
# -----------------------------------------------------------------------------
mattermost-mobile
# Mattermost compatibility tooling (regenerated/downloaded artifacts)
tools/mm-compat/openapi/mattermost-openapi-v4.yaml
tools/mm-compat/output/
# -----------------------------------------------------------------------------
# Process IDs and temporary files
# -----------------------------------------------------------------------------
*.pid
*.pid.lock
*.tmp
*.temp
# -----------------------------------------------------------------------------
# Cargo worktrees and sccache
# -----------------------------------------------------------------------------
.worktrees/
.sccache/
.gstack/
# -----------------------------------------------------------------------------
# Patch and diff files
# -----------------------------------------------------------------------------
*.orig
*.rej
*.patch
*.diff
# -----------------------------------------------------------------------------
# Python
# -----------------------------------------------------------------------------
__pycache__/
*.py[cod]
*$py.class
.venv/
venv/
ENV/
env/
dump.rdb
test-results/