-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
178 lines (150 loc) · 1.85 KB
/
.gitignore
File metadata and controls
178 lines (150 loc) · 1.85 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
# Gradle
.gradle/
build/
!gradle/wrapper/gradle-wrapper.jar
!**/src/main/**/build/
!**/src/test/**/build/
# IntelliJ IDEA
.idea/
*.iml
*.iws
*.ipr
out/
!**/src/main/**/out/
!**/src/test/**/out/
# Eclipse
.classpath
.project
.settings/
bin/
!**/src/main/**/bin/
!**/src/test/**/bin/
# VS Code
.vscode/
# macOS
.DS_Store
# Windows
Thumbs.db
ehthumbs.db
Desktop.ini
# Kotlin
*.kotlin_module
*.kt.swp
# Maven
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
# Gradle Wrapper
!gradle-wrapper.jar
# Kotlin Multiplatform
kotlin-js-store/
.kotlin/
# Compiled object files and libraries
*.o
*.a
*.dylib
*.klib
*.so
*.dll
__.SYMDEF
# Build outputs (root level)
/*.o
/*.a
/*.framework.o
# CocoaPods (iOS)
Pods/
*.xcworkspace
!*.xcworkspace/contents.xcworkspacedata
*.xcuserdata
*.xcuserdatad
*.xcuserstate
project.xcworkspace/
xcuserdata/
# KMP CocoaPods - Auto-generated podspec files
*.podspec
!app/composeApp/composeApp.podspec
# Xcode
*.hmap
*.ipa
*.dSYM.zip
*.dSYM
*.swp
*~.nib
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate
*.xcscmblueprint
# Android
*.apk
*.ap_
*.aab
*.dex
*.class
bin/
gen/
out/
release/
.gradle/
local.properties
*.iml
.idea/
*.hprof
.cxx/
.externalNativeBuild
.navigation/
captures/
output.json
# NDK
obj/
# Logs
*.log
# Temporary files
*.tmp
*.temp
*.swp
*~
# Package Files
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
# Virtual machine crash logs
hs_err_pid*
# Application specific
*.keystore
!debug.keystore
# Local configuration files
local.properties
gradle.properties.local
# Build artifacts
*.class
*.dex
*.ap_
*.apk
*.aar
# Kotlin compiler
*.kotlin_module
# JVM
*.classpath
*.project
*.settings/
# Node (if using JS target)
node_modules/
npm-debug.log
yarn-error.log
# Python (if any scripts)
__pycache__/
*.py[cod]
*$py.class
# Distribution
dist/
distributions/