Skip to content

Commit a358f4d

Browse files
committed
Add .gitignore
0 parents  commit a358f4d

File tree

1 file changed

+188
-0
lines changed

1 file changed

+188
-0
lines changed

.gitignore

Lines changed: 188 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,188 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/go,macos,linux,goland
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=go,macos,linux,goland
3+
4+
### Go ###
5+
# If you prefer the allow list template instead of the deny list, see community template:
6+
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
7+
#
8+
# Binaries for programs and plugins
9+
*.exe
10+
*.exe~
11+
*.dll
12+
*.so
13+
*.dylib
14+
15+
# Test binary, built with `go test -c`
16+
*.test
17+
18+
# Output of the go coverage tool, specifically when used with LiteIDE
19+
*.out
20+
21+
# Dependency directories (remove the comment below to include it)
22+
# vendor/
23+
24+
# Go workspace file
25+
go.work
26+
27+
### GoLand ###
28+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
29+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
30+
31+
# User-specific stuff
32+
.idea/**/workspace.xml
33+
.idea/**/tasks.xml
34+
.idea/**/usage.statistics.xml
35+
.idea/**/dictionaries
36+
.idea/**/shelf
37+
38+
# AWS User-specific
39+
.idea/**/aws.xml
40+
41+
# Generated files
42+
.idea/**/contentModel.xml
43+
44+
# Sensitive or high-churn files
45+
.idea/**/dataSources/
46+
.idea/**/dataSources.ids
47+
.idea/**/dataSources.local.xml
48+
.idea/**/sqlDataSources.xml
49+
.idea/**/dynamic.xml
50+
.idea/**/uiDesigner.xml
51+
.idea/**/dbnavigator.xml
52+
53+
# Gradle
54+
.idea/**/gradle.xml
55+
.idea/**/libraries
56+
57+
# Gradle and Maven with auto-import
58+
# When using Gradle or Maven with auto-import, you should exclude module files,
59+
# since they will be recreated, and may cause churn. Uncomment if using
60+
# auto-import.
61+
# .idea/artifacts
62+
# .idea/compiler.xml
63+
# .idea/jarRepositories.xml
64+
# .idea/modules.xml
65+
# .idea/*.iml
66+
# .idea/modules
67+
# *.iml
68+
# *.ipr
69+
70+
# CMake
71+
cmake-build-*/
72+
73+
# Mongo Explorer plugin
74+
.idea/**/mongoSettings.xml
75+
76+
# File-based project format
77+
*.iws
78+
79+
# IntelliJ
80+
out/
81+
82+
# mpeltonen/sbt-idea plugin
83+
.idea_modules/
84+
85+
# JIRA plugin
86+
atlassian-ide-plugin.xml
87+
88+
# Cursive Clojure plugin
89+
.idea/replstate.xml
90+
91+
# SonarLint plugin
92+
.idea/sonarlint/
93+
94+
# Crashlytics plugin (for Android Studio and IntelliJ)
95+
com_crashlytics_export_strings.xml
96+
crashlytics.properties
97+
crashlytics-build.properties
98+
fabric.properties
99+
100+
# Editor-based Rest Client
101+
.idea/httpRequests
102+
103+
# Android studio 3.1+ serialized cache file
104+
.idea/caches/build_file_checksums.ser
105+
106+
### GoLand Patch ###
107+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
108+
109+
# *.iml
110+
# modules.xml
111+
# .idea/misc.xml
112+
# *.ipr
113+
114+
# Sonarlint plugin
115+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
116+
.idea/**/sonarlint/
117+
118+
# SonarQube Plugin
119+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
120+
.idea/**/sonarIssues.xml
121+
122+
# Markdown Navigator plugin
123+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
124+
.idea/**/markdown-navigator.xml
125+
.idea/**/markdown-navigator-enh.xml
126+
.idea/**/markdown-navigator/
127+
128+
# Cache file creation bug
129+
# See https://youtrack.jetbrains.com/issue/JBR-2257
130+
.idea/$CACHE_FILE$
131+
132+
# CodeStream plugin
133+
# https://plugins.jetbrains.com/plugin/12206-codestream
134+
.idea/codestream.xml
135+
136+
# Azure Toolkit for IntelliJ plugin
137+
# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
138+
.idea/**/azureSettings.xml
139+
140+
### Linux ###
141+
*~
142+
143+
# temporary files which can be created if a process still has a handle open of a deleted file
144+
.fuse_hidden*
145+
146+
# KDE directory preferences
147+
.directory
148+
149+
# Linux trash folder which might appear on any partition or disk
150+
.Trash-*
151+
152+
# .nfs files are created when an open file is removed but is still being accessed
153+
.nfs*
154+
155+
### macOS ###
156+
# General
157+
.DS_Store
158+
.AppleDouble
159+
.LSOverride
160+
161+
# Icon must end with two \r
162+
Icon
163+
164+
165+
# Thumbnails
166+
._*
167+
168+
# Files that might appear in the root of a volume
169+
.DocumentRevisions-V100
170+
.fseventsd
171+
.Spotlight-V100
172+
.TemporaryItems
173+
.Trashes
174+
.VolumeIcon.icns
175+
.com.apple.timemachine.donotpresent
176+
177+
# Directories potentially created on remote AFP share
178+
.AppleDB
179+
.AppleDesktop
180+
Network Trash Folder
181+
Temporary Items
182+
.apdisk
183+
184+
### macOS Patch ###
185+
# iCloud generated files
186+
*.icloud
187+
188+
# End of https://www.toptal.com/developers/gitignore/api/go,macos,linux,goland

0 commit comments

Comments
 (0)