1+
2+ # Created by https://www.gitignore.io/api/go,osx,linux,windows,jetbrains+all
3+
4+ # ## Go ###
5+ # Binaries for programs and plugins
6+ * .exe
7+ * .exe~
8+ * .dll
9+ * .so
10+ * .dylib
11+
12+ # Test binary, build with `go test -c`
13+ * .test
14+
15+ # Output of the go coverage tool, specifically when used with LiteIDE
16+ * .out
17+
18+ # ## Go Patch ###
19+ /vendor /
20+ /Godeps /
21+
22+ # ## JetBrains+all ###
23+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
24+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
25+
26+ # User-specific stuff
27+ .idea /** /workspace.xml
28+ .idea /** /tasks.xml
29+ .idea /** /usage.statistics.xml
30+ .idea /** /dictionaries
31+ .idea /** /shelf
32+
33+ # Generated files
34+ .idea /** /contentModel.xml
35+
36+ # Sensitive or high-churn files
37+ .idea /** /dataSources /
38+ .idea /** /dataSources.ids
39+ .idea /** /dataSources.local.xml
40+ .idea /** /sqlDataSources.xml
41+ .idea /** /dynamic.xml
42+ .idea /** /uiDesigner.xml
43+ .idea /** /dbnavigator.xml
44+
45+ # Gradle
46+ .idea /** /gradle.xml
47+ .idea /** /libraries
48+
49+ # Gradle and Maven with auto-import
50+ # When using Gradle or Maven with auto-import, you should exclude module files,
51+ # since they will be recreated, and may cause churn. Uncomment if using
52+ # auto-import.
53+ # .idea/modules.xml
54+ # .idea/*.iml
55+ # .idea/modules
56+
57+ # CMake
58+ cmake-build- * /
59+
60+ # Mongo Explorer plugin
61+ .idea /** /mongoSettings.xml
62+
63+ # File-based project format
64+ * .iws
65+
66+ # IntelliJ
67+ out /
68+
69+ # mpeltonen/sbt-idea plugin
70+ .idea_modules /
71+
72+ # JIRA plugin
73+ atlassian-ide-plugin.xml
74+
75+ # Cursive Clojure plugin
76+ .idea /replstate.xml
77+
78+ # Crashlytics plugin (for Android Studio and IntelliJ)
79+ com_crashlytics_export_strings.xml
80+ crashlytics.properties
81+ crashlytics-build.properties
82+ fabric.properties
83+
84+ # Editor-based Rest Client
85+ .idea /httpRequests
86+
87+ # Android studio 3.1+ serialized cache file
88+ .idea /caches /build_file_checksums.ser
89+
90+ # ## JetBrains+all Patch ###
91+ # Ignores the whole .idea folder and all .iml files
92+ # See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
93+
94+ .idea /
95+
96+ # Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
97+
98+ * .iml
99+ modules.xml
100+ .idea /misc.xml
101+ * .ipr
102+
103+ # ## Linux ###
104+ * ~
105+
106+ # temporary files which can be created if a process still has a handle open of a deleted file
107+ .fuse_hidden *
108+
109+ # KDE directory preferences
110+ .directory
111+
112+ # Linux trash folder which might appear on any partition or disk
113+ .Trash- *
114+
115+ # .nfs files are created when an open file is removed but is still being accessed
116+ .nfs *
117+
118+ # ## OSX ###
119+ # General
120+ .DS_Store
121+ .AppleDouble
122+ .LSOverride
123+
124+ # Icon must end with two \r
125+ Icon
126+
127+ # Thumbnails
128+ ._ *
129+
130+ # Files that might appear in the root of a volume
131+ .DocumentRevisions-V100
132+ .fseventsd
133+ .Spotlight-V100
134+ .TemporaryItems
135+ .Trashes
136+ .VolumeIcon.icns
137+ .com.apple.timemachine.donotpresent
138+
139+ # Directories potentially created on remote AFP share
140+ .AppleDB
141+ .AppleDesktop
142+ Network Trash Folder
143+ Temporary Items
144+ .apdisk
145+
146+ # ## Windows ###
147+ # Windows thumbnail cache files
148+ Thumbs.db
149+ ehthumbs.db
150+ ehthumbs_vista.db
151+
152+ # Dump file
153+ * .stackdump
154+
155+ # Folder config file
156+ [Dd ]esktop.ini
157+
158+ # Recycle Bin used on file shares
159+ $RECYCLE.BIN /
160+
161+ # Windows Installer files
162+ * .cab
163+ * .msi
164+ * .msix
165+ * .msm
166+ * .msp
167+
168+ # Windows shortcuts
169+ * .lnk
170+
171+
172+ # End of https://www.gitignore.io/api/go,osx,linux,windows,jetbrains+all
0 commit comments