-
Notifications
You must be signed in to change notification settings - Fork 126
Expand file tree
/
Copy path.gitignore
More file actions
93 lines (79 loc) · 2.26 KB
/
Copy path.gitignore
File metadata and controls
93 lines (79 loc) · 2.26 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
# ==========================================
# Dependencies
# ==========================================
node_modules/
vendor/
# ==========================================
# Build Outputs & Compiled Assets
# ==========================================
assets/
storybook-static/
# ==========================================
# Environment Variables & Secrets
# ==========================================
# Prevent committing local credentials and configs
.env
*.local
# ==========================================
# Testing & Code Quality
# ==========================================
coverage/
# ==========================================
# OS & System Files
# ==========================================
.DS_Store
Thumbs.db
# ==========================================
# Standard IDEs & Editors
# ==========================================
.idea/
.vscode/
# ==========================================
# AI Assistants & IDEs (Surgical exclusions)
# ==========================================
# Cursor IDE
# Keeps: .cursor/rules/ (if you ever use directory-based rules)
# Ignores: Local workspace state and chat sessions
.cursor/workspace.json
.cursor/state.json
.cursor/sessions/
# Windsurf IDE
# Keeps: Potential shared configurations
# Ignores: Local state and history
.windsurf/workspace.json
.windsurf/state.json
.windsurf/sessions/
# Claude Code CLI
# Keeps: .claude/settings.json or shared agents
# Ignores: Local config, state, and chat history
.claude/*.local.json
.claude/history/
.claude/state/
# Antigravity
# Keeps: Shared project rules if placed in .antigravity/
# Ignores: Local agent planning history, cache, and local state
.antigravity/history/
.antigravity/cache/
.antigravity/*.local.json
# Aider CLI
# Aider generates specific files at the root, none should be committed
.aider.chat.history.md
.aider.input.history
.aider.tags.cache.*
# Keeps: Shared configurations if added later
# Ignores: Local workspace state, cache, and history
.opencode/
# OpenCode CLI / TUI
# GitHub Copilot / Codeium / Tabnine
# Ignores local chat history and indexing caches
.copilot/chat-history/
.copilot/cache/
.codeium/
.tabnine/
# Generic Developer Scratchpads
# Commonly used by devs to draft prompts before pasting them to web UIs
ai-prompt.txt
ai-prompt.md
chat-history.md
scratchpad.md
.ai-history/