1
+
2
+ # Created by https://www.gitignore.io/api/go,vim,macos,intellij+all
3
+ # Edit at https://www.gitignore.io/?templates=go,vim,macos,intellij+all
4
+
5
+ # ## Go ###
6
+ # Binaries for programs and plugins
7
+ * .exe
8
+ * .exe~
9
+ * .dll
10
+ * .so
11
+ * .dylib
12
+
13
+ # Test binary, built with `go test -c`
14
+ * .test
15
+
16
+ # Output of the go coverage tool, specifically when used with LiteIDE
17
+ * .out
18
+
19
+ # Dependency directories (remove the comment below to include it)
20
+ # vendor/
21
+
22
+ # ## Go Patch ###
23
+ /vendor /
24
+ /Godeps /
25
+
26
+ # ## Intellij+all ###
27
+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
28
+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
29
+
30
+ # User-specific stuff
31
+ .idea /** /workspace.xml
32
+ .idea /** /tasks.xml
33
+ .idea /** /usage.statistics.xml
34
+ .idea /** /dictionaries
35
+ .idea /** /shelf
36
+
37
+ # Generated files
38
+ .idea /** /contentModel.xml
39
+
40
+ # Sensitive or high-churn files
41
+ .idea /** /dataSources /
42
+ .idea /** /dataSources.ids
43
+ .idea /** /dataSources.local.xml
44
+ .idea /** /sqlDataSources.xml
45
+ .idea /** /dynamic.xml
46
+ .idea /** /uiDesigner.xml
47
+ .idea /** /dbnavigator.xml
48
+
49
+ # Gradle
50
+ .idea /** /gradle.xml
51
+ .idea /** /libraries
52
+
53
+ # Gradle and Maven with auto-import
54
+ # When using Gradle or Maven with auto-import, you should exclude module files,
55
+ # since they will be recreated, and may cause churn. Uncomment if using
56
+ # auto-import.
57
+ # .idea/modules.xml
58
+ # .idea/*.iml
59
+ # .idea/modules
60
+ # *.iml
61
+ # *.ipr
62
+
63
+ # CMake
64
+ cmake-build- * /
65
+
66
+ # Mongo Explorer plugin
67
+ .idea /** /mongoSettings.xml
68
+
69
+ # File-based project format
70
+ * .iws
71
+
72
+ # IntelliJ
73
+ out /
74
+
75
+ # mpeltonen/sbt-idea plugin
76
+ .idea_modules /
77
+
78
+ # JIRA plugin
79
+ atlassian-ide-plugin.xml
80
+
81
+ # Cursive Clojure plugin
82
+ .idea /replstate.xml
83
+
84
+ # Crashlytics plugin (for Android Studio and IntelliJ)
85
+ com_crashlytics_export_strings.xml
86
+ crashlytics.properties
87
+ crashlytics-build.properties
88
+ fabric.properties
89
+
90
+ # Editor-based Rest Client
91
+ .idea /httpRequests
92
+
93
+ # Android studio 3.1+ serialized cache file
94
+ .idea /caches /build_file_checksums.ser
95
+
96
+ # ## Intellij+all Patch ###
97
+ # Ignores the whole .idea folder and all .iml files
98
+ # See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
99
+
100
+ .idea /
101
+
102
+ # Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
103
+
104
+ * .iml
105
+ modules.xml
106
+ .idea /misc.xml
107
+ * .ipr
108
+
109
+ # Sonarlint plugin
110
+ .idea /sonarlint
111
+
112
+ # ## macOS ###
113
+ # General
114
+ .DS_Store
115
+ .AppleDouble
116
+ .LSOverride
117
+
118
+ # Icon must end with two \r
119
+ Icon
120
+
121
+ # Thumbnails
122
+ ._ *
123
+
124
+ # Files that might appear in the root of a volume
125
+ .DocumentRevisions-V100
126
+ .fseventsd
127
+ .Spotlight-V100
128
+ .TemporaryItems
129
+ .Trashes
130
+ .VolumeIcon.icns
131
+ .com.apple.timemachine.donotpresent
132
+
133
+ # Directories potentially created on remote AFP share
134
+ .AppleDB
135
+ .AppleDesktop
136
+ Network Trash Folder
137
+ Temporary Items
138
+ .apdisk
139
+
140
+ # ## Vim ###
141
+ # Swap
142
+ [._ ]* .s [a-v ][a-z ]
143
+ [._ ]* .sw [a-p ]
144
+ [._ ]s [a-rt-v ][a-z ]
145
+ [._ ]ss [a-gi-z ]
146
+ [._ ]sw [a-p ]
147
+
148
+ # Session
149
+ Session.vim
150
+ Sessionx.vim
151
+
152
+ # Temporary
153
+ .netrwhist
154
+ * ~
155
+
156
+ # Auto-generated tag files
157
+ tags
158
+
159
+ # Persistent undo
160
+ [._ ]* .un~
161
+
162
+ # Coc configuration directory
163
+ .vim
164
+
165
+ # End of https://www.gitignore.io/api/go,vim,macos,intellij+all
0 commit comments