-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.augmentignore
More file actions
204 lines (191 loc) · 3.93 KB
/
Copy path.augmentignore
File metadata and controls
204 lines (191 loc) · 3.93 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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
# ======= .augmentignore — MASTER TEMPLATE =======
# Controls what Augment Code indexes from your workspace.
# See: https://docs.augmentcode.com/setup-augment/workspace-indexing
#
# Sources merged: trading-assistant · pir-devine-news ·
# divorce-custody-assistant · dappu (web3 repos) ·
# tradingview-mcp-jackson · robinhood-mcp
#
# Augment indexes all files EXCEPT those matching .gitignore AND this file.
# Use ! prefix to re-include files excluded by .gitignore.
# Remove sections that don't apply to your stack.
# ================================================
# ======= SYNTAX GUIDE =======
# Uses .gitignore syntax: https://git-scm.com/docs/gitignore
# Lines starting with # are comments (ignored)
# Blank lines are ignored
# Use ! to include files/directories that would otherwise be excluded
# Use * as a wildcard to match any characters (except /)
# Use ** to match any characters including /
# =============================
# ========================================
# SECTION 1 — INCLUDE (override .gitignore)
# ========================================
# Provides dependency context for better AI suggestions.
!node_modules
!package-lock.json
!yarn.lock
!pnpm-lock.yaml
!Gemfile.lock
!requirements.txt
!go.mod
!go.sum
# ========================================
# SECTION 2 — SENSITIVE DATA (never index)
# ========================================
.env*
secrets/
keys/
*.key
*.pem
*.p12
*.pfx
credentials.json
service_account.json
*service_account*
*service-account*
*google-credentials*
*google_credentials*
# GWS CLI auth cache
.gws/
gws-credentials*
# Brokerage session tokens
.tokens/
# MCP registry tokens
.mcpregistry_github_token
.mcpregistry_registry_token
# Web3 wallet and on-chain secrets
*.json.secret
wallets/
keystore/
mnemonic*
seed*
# ========================================
# SECTION 3 — BUILD ARTIFACTS
# ========================================
dist/
build/
out/
target/
bin/
obj/
*.min.js
*.min.css
*.class
*.o
*.so
*.dll
# ========================================
# SECTION 4 — LOGS AND TEMPORARY FILES
# ========================================
*.log
logs/
log/
tmp/
temp/
temp_*
*.tmp
*.temp
*.swp
*.swo
# ========================================
# SECTION 5 — CACHE DIRECTORIES
# ========================================
.cache/
.cache_ggshield
.next/
.nuxt/
.vuepress/
.docusaurus/
node_modules/.cache/
.npm/
.yarn/
.ruff_cache/
.pytest_cache/
.mypy_cache/
.vscode/settings.json
.idea/workspace.xml
# ========================================
# SECTION 6 — IDE AND OS FILES
# ========================================
.vscode/
.idea/
*.sublime-*
.DS_Store
Thumbs.db
desktop.ini
# ========================================
# SECTION 7 — TEST DATA AND FIXTURES
# ========================================
fixtures/
__snapshots__/
coverage/
.nyc_output/
*.lcov
htmlcov/
coverage.xml
*.cover
.coverage
# ========================================
# SECTION 8 — DOCUMENTATION BUILDS
# ========================================
docs/build/
site/
_site/
public/
# ========================================
# SECTION 9 — LARGE MEDIA AND BINARY FILES
# ========================================
*.jpg
*.jpeg
*.png
*.gif
*.bmp
*.svg
*.mp4
*.avi
*.mov
*.mp3
*.wav
*.zip
*.tar.gz
*.rar
*.pdf
# ========================================
# SECTION 10 — WEB3 / SOLIDITY (remove if not applicable)
# ========================================
# Stack: Ethereum · Solidity · React · Hardhat · MetaMask
artifacts/
cache/
typechain-types/
typechain/
deployments/
*.abi
coverage.json
.hardhat-cache/
.openzeppelin/
# ========================================
# SECTION 11 — PYTHON (remove if not applicable)
# ========================================
__pycache__/
*.py[cod]
*$py.class
venv/
.venv/
env/
develop-eggs/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
wheels/
*.egg-info/
uv.lock
Pipfile.lock
poetry.lock
# ========================================
# SECTION 12 — REPO-SPECIFIC
# ========================================
# Add project-specific exclusions below.