Skip to content

Commit 5fda3a1

Browse files
build: Add .gitignore
0 parents  commit 5fda3a1

File tree

1 file changed

+270
-0
lines changed

1 file changed

+270
-0
lines changed

.gitignore

+270
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,270 @@
1+
2+
# Created by https://www.gitignore.io/api/linux,osx,windows,java,scala,intellij,jetbrains,visualstudiocode,sbt,bloop,metals
3+
# Edit at https://www.gitignore.io/?templates=linux,osx,windows,java,scala,intellij,jetbrains,visualstudiocode,sbt,bloop,metals
4+
5+
### Bloop ###
6+
.bloop/
7+
8+
### Intellij ###
9+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
10+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
11+
12+
# User-specific stuff
13+
.idea/**/workspace.xml
14+
.idea/**/tasks.xml
15+
.idea/**/usage.statistics.xml
16+
.idea/**/dictionaries
17+
.idea/**/shelf
18+
19+
# Generated files
20+
.idea/**/contentModel.xml
21+
22+
# Sensitive or high-churn files
23+
.idea/**/dataSources/
24+
.idea/**/dataSources.ids
25+
.idea/**/dataSources.local.xml
26+
.idea/**/sqlDataSources.xml
27+
.idea/**/dynamic.xml
28+
.idea/**/uiDesigner.xml
29+
.idea/**/dbnavigator.xml
30+
31+
# Gradle
32+
.idea/**/gradle.xml
33+
.idea/**/libraries
34+
35+
# Gradle and Maven with auto-import
36+
# When using Gradle or Maven with auto-import, you should exclude module files,
37+
# since they will be recreated, and may cause churn. Uncomment if using
38+
# auto-import.
39+
# .idea/modules.xml
40+
# .idea/*.iml
41+
# .idea/modules
42+
# *.iml
43+
# *.ipr
44+
45+
# CMake
46+
cmake-build-*/
47+
48+
# Mongo Explorer plugin
49+
.idea/**/mongoSettings.xml
50+
51+
# File-based project format
52+
*.iws
53+
54+
# IntelliJ
55+
out/
56+
57+
# mpeltonen/sbt-idea plugin
58+
.idea_modules/
59+
60+
# JIRA plugin
61+
atlassian-ide-plugin.xml
62+
63+
# Cursive Clojure plugin
64+
.idea/replstate.xml
65+
66+
# Crashlytics plugin (for Android Studio and IntelliJ)
67+
com_crashlytics_export_strings.xml
68+
crashlytics.properties
69+
crashlytics-build.properties
70+
fabric.properties
71+
72+
# Editor-based Rest Client
73+
.idea/httpRequests
74+
75+
# Android studio 3.1+ serialized cache file
76+
.idea/caches/build_file_checksums.ser
77+
78+
### Intellij Patch ###
79+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
80+
81+
# *.iml
82+
# modules.xml
83+
# .idea/misc.xml
84+
# *.ipr
85+
86+
# Sonarlint plugin
87+
.idea/sonarlint
88+
89+
### Java ###
90+
# Compiled class file
91+
*.class
92+
93+
# Log file
94+
*.log
95+
96+
# BlueJ files
97+
*.ctxt
98+
99+
# Mobile Tools for Java (J2ME)
100+
.mtj.tmp/
101+
102+
# Package Files #
103+
*.jar
104+
*.war
105+
*.nar
106+
*.ear
107+
*.zip
108+
*.tar.gz
109+
*.rar
110+
111+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
112+
hs_err_pid*
113+
114+
### JetBrains ###
115+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
116+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
117+
118+
# User-specific stuff
119+
120+
# Generated files
121+
122+
# Sensitive or high-churn files
123+
124+
# Gradle
125+
126+
# Gradle and Maven with auto-import
127+
# When using Gradle or Maven with auto-import, you should exclude module files,
128+
# since they will be recreated, and may cause churn. Uncomment if using
129+
# auto-import.
130+
# .idea/modules.xml
131+
# .idea/*.iml
132+
# .idea/modules
133+
# *.iml
134+
# *.ipr
135+
136+
# CMake
137+
138+
# Mongo Explorer plugin
139+
140+
# File-based project format
141+
142+
# IntelliJ
143+
144+
# mpeltonen/sbt-idea plugin
145+
146+
# JIRA plugin
147+
148+
# Cursive Clojure plugin
149+
150+
# Crashlytics plugin (for Android Studio and IntelliJ)
151+
152+
# Editor-based Rest Client
153+
154+
# Android studio 3.1+ serialized cache file
155+
156+
### JetBrains Patch ###
157+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
158+
159+
# *.iml
160+
# modules.xml
161+
# .idea/misc.xml
162+
# *.ipr
163+
164+
# Sonarlint plugin
165+
166+
### Linux ###
167+
*~
168+
169+
# temporary files which can be created if a process still has a handle open of a deleted file
170+
.fuse_hidden*
171+
172+
# KDE directory preferences
173+
.directory
174+
175+
# Linux trash folder which might appear on any partition or disk
176+
.Trash-*
177+
178+
# .nfs files are created when an open file is removed but is still being accessed
179+
.nfs*
180+
181+
### Metals ###
182+
.metals/
183+
184+
### OSX ###
185+
# General
186+
.DS_Store
187+
.AppleDouble
188+
.LSOverride
189+
190+
# Icon must end with two \r
191+
Icon
192+
193+
# Thumbnails
194+
._*
195+
196+
# Files that might appear in the root of a volume
197+
.DocumentRevisions-V100
198+
.fseventsd
199+
.Spotlight-V100
200+
.TemporaryItems
201+
.Trashes
202+
.VolumeIcon.icns
203+
.com.apple.timemachine.donotpresent
204+
205+
# Directories potentially created on remote AFP share
206+
.AppleDB
207+
.AppleDesktop
208+
Network Trash Folder
209+
Temporary Items
210+
.apdisk
211+
212+
### SBT ###
213+
# Simple Build Tool
214+
# http://www.scala-sbt.org/release/docs/Getting-Started/Directories.html#configuring-version-control
215+
216+
dist/*
217+
target/
218+
lib_managed/
219+
src_managed/
220+
project/boot/
221+
project/plugins/project/
222+
.history
223+
.cache
224+
.lib/
225+
226+
### Scala ###
227+
228+
### VisualStudioCode ###
229+
.vscode/*
230+
!.vscode/settings.json
231+
!.vscode/tasks.json
232+
!.vscode/launch.json
233+
!.vscode/extensions.json
234+
235+
### VisualStudioCode Patch ###
236+
# Ignore all local history of files
237+
238+
### Windows ###
239+
# Windows thumbnail cache files
240+
Thumbs.db
241+
Thumbs.db:encryptable
242+
ehthumbs.db
243+
ehthumbs_vista.db
244+
245+
# Dump file
246+
*.stackdump
247+
248+
# Folder config file
249+
[Dd]esktop.ini
250+
251+
# Recycle Bin used on file shares
252+
$RECYCLE.BIN/
253+
254+
# Windows Installer files
255+
*.cab
256+
*.msi
257+
*.msix
258+
*.msm
259+
*.msp
260+
261+
# Windows shortcuts
262+
*.lnk
263+
264+
# End of https://www.gitignore.io/api/linux,osx,windows,java,scala,intellij,jetbrains,visualstudiocode,sbt,bloop,metals
265+
266+
### Overrides ###
267+
.idea/
268+
*.iml
269+
/classes/
270+

0 commit comments

Comments
 (0)