-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore_global
More file actions
139 lines (114 loc) · 2.68 KB
/
.gitignore_global
File metadata and controls
139 lines (114 loc) · 2.68 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
###############################################################################
# 🧠 macOS SYSTEM FILES
###############################################################################
# Finder metadata
.DS_Store
.AppleDouble
.LSOverride
# Icon file on directories
Icon
# macOS folder attributes
._*
.Spotlight-V100
.Trashes
.fseventsd
# Temporary system files
*.swp
*.swo
###############################################################################
# 🧰 DEVELOPMENT ENVIRONMENT
###############################################################################
# Logs and temporary files
*.log
*.tmp
*.bak
*.old
*.orig
# Environment and secrets
.env
.env.*
.secret
*.key
###############################################################################
# 🍎 XCODE / SWIFT / APPLE PROJECTS
###############################################################################
# Build products
build/
DerivedData/
*.xcworkspace/xcuserdata/
*.xcuserstate
*.xcscmblueprint
*.xcodeproj/project.xcworkspace/
*.xcodeproj/xcuserdata/
*.swiftpm/
*.playgroundbook/
# Swift Package Manager
.build/
Package.resolved
###############################################################################
# 🪄 EDITOR / TOOLING
###############################################################################
# VSCode
.vscode/
.history/
.code-workspace
# JetBrains (AppCode, CLion, etc.)
.idea/
*.iml
# Sublime Text
*.sublime-project
*.sublime-workspace
# BBEdit / TextWrangler
*.bbprojectd/
*.bbproject/
###############################################################################
# 🧩 NODE / JAVASCRIPT
###############################################################################
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
dist/
coverage/
.cache/
###############################################################################
# 🐍 PYTHON
###############################################################################
__pycache__/
*.py[cod]
*.so
*.egg-info/
*.egg
.env/
.venv/
venv/
###############################################################################
# ⚙️ MISC BUILD TOOLS
###############################################################################
# macOS build outputs (make, cmake, etc.)
*.o
*.obj
*.a
*.so
*.dll
*.exe
*.dSYM/
# Dependency managers
Pods/
Carthage/
fastlane/report.xml
fastlane/test_output/
###############################################################################
# 🧱 LOCAL CONFIG / MACHINE SPECIFIC
###############################################################################
# User-specific IDE settings
*.user
*.userprefs
*.local
# Temporary backups
*~
~$*
# Zsh history and local AI tool configs
.zsh_history
**/.claude/settings.local.json