Skip to content

Commit 86251a6

Browse files
committed
[M] update gitignore
1 parent 4c712ef commit 86251a6

File tree

2 files changed

+146
-0
lines changed

2 files changed

+146
-0
lines changed

.DS_Store

-6 KB
Binary file not shown.

.gitignore

Lines changed: 146 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/go,macos,intellij
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=go,macos,intellij
4+
5+
### Go ###
16
# Binaries for programs and plugins
27
*.exe
38
*.exe~
@@ -13,3 +18,144 @@
1318

1419
# Dependency directories (remove the comment below to include it)
1520
# vendor/
21+
22+
### Go Patch ###
23+
/vendor/
24+
/Godeps/
25+
26+
### Intellij ###
27+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
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+
# AWS User-specific
38+
.idea/**/aws.xml
39+
40+
# Generated files
41+
.idea/**/contentModel.xml
42+
43+
# Sensitive or high-churn files
44+
.idea/**/dataSources/
45+
.idea/**/dataSources.ids
46+
.idea/**/dataSources.local.xml
47+
.idea/**/sqlDataSources.xml
48+
.idea/**/dynamic.xml
49+
.idea/**/uiDesigner.xml
50+
.idea/**/dbnavigator.xml
51+
52+
# Gradle
53+
.idea/**/gradle.xml
54+
.idea/**/libraries
55+
56+
# Gradle and Maven with auto-import
57+
# When using Gradle or Maven with auto-import, you should exclude module files,
58+
# since they will be recreated, and may cause churn. Uncomment if using
59+
# auto-import.
60+
# .idea/artifacts
61+
# .idea/compiler.xml
62+
# .idea/jarRepositories.xml
63+
# .idea/modules.xml
64+
# .idea/*.iml
65+
# .idea/modules
66+
# *.iml
67+
# *.ipr
68+
69+
# CMake
70+
cmake-build-*/
71+
72+
# Mongo Explorer plugin
73+
.idea/**/mongoSettings.xml
74+
75+
# File-based project format
76+
*.iws
77+
78+
# IntelliJ
79+
out/
80+
81+
# mpeltonen/sbt-idea plugin
82+
.idea_modules/
83+
84+
# JIRA plugin
85+
atlassian-ide-plugin.xml
86+
87+
# Cursive Clojure plugin
88+
.idea/replstate.xml
89+
90+
# Crashlytics plugin (for Android Studio and IntelliJ)
91+
com_crashlytics_export_strings.xml
92+
crashlytics.properties
93+
crashlytics-build.properties
94+
fabric.properties
95+
96+
# Editor-based Rest Client
97+
.idea/httpRequests
98+
99+
# Android studio 3.1+ serialized cache file
100+
.idea/caches/build_file_checksums.ser
101+
102+
### Intellij Patch ###
103+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
104+
105+
# *.iml
106+
# modules.xml
107+
# .idea/misc.xml
108+
# *.ipr
109+
110+
# Sonarlint plugin
111+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
112+
.idea/**/sonarlint/
113+
114+
# SonarQube Plugin
115+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
116+
.idea/**/sonarIssues.xml
117+
118+
# Markdown Navigator plugin
119+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
120+
.idea/**/markdown-navigator.xml
121+
.idea/**/markdown-navigator-enh.xml
122+
.idea/**/markdown-navigator/
123+
124+
# Cache file creation bug
125+
# See https://youtrack.jetbrains.com/issue/JBR-2257
126+
.idea/$CACHE_FILE$
127+
128+
# CodeStream plugin
129+
# https://plugins.jetbrains.com/plugin/12206-codestream
130+
.idea/codestream.xml
131+
132+
### macOS ###
133+
# General
134+
.DS_Store
135+
.AppleDouble
136+
.LSOverride
137+
138+
# Icon must end with two \r
139+
Icon
140+
141+
142+
# Thumbnails
143+
._*
144+
145+
# Files that might appear in the root of a volume
146+
.DocumentRevisions-V100
147+
.fseventsd
148+
.Spotlight-V100
149+
.TemporaryItems
150+
.Trashes
151+
.VolumeIcon.icns
152+
.com.apple.timemachine.donotpresent
153+
154+
# Directories potentially created on remote AFP share
155+
.AppleDB
156+
.AppleDesktop
157+
Network Trash Folder
158+
Temporary Items
159+
.apdisk
160+
161+
# End of https://www.toptal.com/developers/gitignore/api/go,macos,intellij

0 commit comments

Comments
 (0)