11# Database files used for testing
22* .db
33
4- target /
5- .idea /
4+ # Ignore Gradle project-specific cache directory
5+ .gradle
6+ .kotlin
7+
8+ # Ignore Gradle build output directory
9+ ** /build
10+
11+ # ## Windows template
12+ # Windows thumbnail cache files
13+ Thumbs.db
14+ Thumbs.db:encryptable
15+ ehthumbs.db
16+ ehthumbs_vista.db
17+
18+ # Dump file
19+ * .stackdump
20+
21+ # Folder config file
22+ [Dd ]esktop.ini
23+
24+ # Recycle Bin used on file shares
25+ $RECYCLE.BIN /
26+
27+ # Windows Installer files
28+ * .cab
29+ * .msi
30+ * .msix
31+ * .msm
32+ * .msp
33+
34+ # Windows shortcuts
35+ * .lnk
36+
37+ # ## macOS template
38+ # General
39+ .DS_Store
40+ .AppleDouble
41+ .LSOverride
42+
43+ # Icon must end with two \r
44+ Icon
45+
46+ # Thumbnails
47+ ._ *
48+
49+ # Files that might appear in the root of a volume
50+ .DocumentRevisions-V100
51+ .fseventsd
52+ .Spotlight-V100
53+ .TemporaryItems
54+ .Trashes
55+ .VolumeIcon.icns
56+ .com.apple.timemachine.donotpresent
57+
58+ # Directories potentially created on remote AFP share
59+ .AppleDB
60+ .AppleDesktop
61+ Network Trash Folder
62+ Temporary Items
63+ .apdisk
64+
65+ # ## Linux template
66+ * ~
67+
68+ # temporary files which can be created if a process still has a handle open of a deleted file
69+ .fuse_hidden *
70+
71+ # KDE directory preferences
72+ .directory
73+
74+ # Linux trash folder which might appear on any partition or disk
75+ .Trash- *
76+
77+ # .nfs files are created when an open file is removed but is still being accessed
78+ .nfs *
79+
80+ # ## JetBrains template
81+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
82+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
83+
84+ * .iml
85+ * .ipr
86+ * .iws
87+ /.idea /*
88+
89+ # Exclude non-user-specific stuff
90+ ! .idea /.name
91+ ! .idea /codeInsightSettings.xml
92+ ! .idea /codeStyles /
93+ ! .idea /copyright /
94+ ! .idea /dataSources.xml
95+ ! .idea /detekt.xml
96+ ! .idea /encodings.xml
97+ ! .idea /externalDependencies.xml
98+ ! .idea /file.template.settings.xml
99+ ! .idea /fileTemplates /
100+ ! .idea /icon.svg
101+ ! .idea /inspectionProfiles /
102+ ! .idea /runConfigurations /
103+ ! .idea /scopes /
104+ ! .idea /vcs.xml
105+
106+ # ## Kotlin template
107+ # Compiled class file
108+ * .class
109+
110+ # Log file
111+ * .log
112+
113+ # Package Files #
114+ * .jar
115+ * .war
116+ * .nar
117+ * .ear
118+ * .zip
119+ * .tar.gz
120+ * .rar
121+
122+ # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
123+ hs_err_pid *
124+
125+ # ## Gradle template
126+ .gradle
127+
128+ # Note that you may need to exclude by hand other folders
129+ # named build if necessary (e.g., in src/)
130+ ** /build /
131+
132+ # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
133+ ! gradle /wrapper /gradle-wrapper.jar
134+
135+ # Cache of project
136+ .gradletasknamecache
137+ .gitignore-android
138+ # ## Android-specific stuff
139+ # Built application files
140+ * .apk
141+ * .ap_
142+ * .aab
143+ * .apks
144+
145+ # Files for the Dalvik VM
146+ * .dex
147+
148+ # Generated files
149+ bin /
150+ gen /
151+
152+ # Local configuration file (sdk path, etc)
153+ local.properties
154+
155+ # Google/Firebase secrets
156+ google-services.json
0 commit comments