Skip to content

Commit 539b9b0

Browse files
authored
Merge pull request #9 from golang-infrastructure/dev
refactor: 精简.gitignore
2 parents e3b4693 + bb64c01 commit 539b9b0

File tree

1 file changed

+0
-180
lines changed

1 file changed

+0
-180
lines changed

.gitignore

-180
Original file line numberDiff line numberDiff line change
@@ -1,181 +1 @@
1-
### Go template
2-
# Binaries for programs and plugins
3-
*.exe
4-
*.exe~
5-
*.dll
6-
*.so
7-
*.dylib
8-
9-
# Test binary, built with `go example -c`
10-
*.test
11-
12-
# Output of the go coverage tool, specifically when used with LiteIDE
13-
*.out
14-
15-
# Dependency directories (remove the comment below to include it)
16-
# vendor/
17-
18-
### JetBrains template
19-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
20-
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
21-
22-
# User-specific stuff
23-
.idea/**/workspace.xml
24-
.idea/**/tasks.xml
25-
.idea/**/usage.statistics.xml
26-
.idea/**/dictionaries
27-
.idea/**/shelf
28-
29-
# Generated files
30-
.idea/**/contentModel.xml
31-
32-
# Sensitive or high-churn files
33-
.idea/**/dataSources/
34-
.idea/**/dataSources.ids
35-
.idea/**/dataSources.local.xml
36-
.idea/**/sqlDataSources.xml
37-
.idea/**/dynamic.xml
38-
.idea/**/uiDesigner.xml
39-
.idea/**/dbnavigator.xml
40-
41-
# Gradle
42-
.idea/**/gradle.xml
43-
.idea/**/libraries
44-
45-
# Gradle and Maven with auto-import
46-
# When using Gradle or Maven with auto-import, you should exclude module files,
47-
# since they will be recreated, and may cause churn. Uncomment if using
48-
# auto-import.
49-
# .idea/artifacts
50-
# .idea/compiler.xml
51-
# .idea/jarRepositories.xml
52-
# .idea/modules.xml
53-
# .idea/*.iml
54-
# .idea/modules
55-
# *.iml
56-
# *.ipr
57-
58-
# CMake
59-
cmake-build-*/
60-
61-
# Mongo Explorer plugin
62-
.idea/**/mongoSettings.xml
63-
64-
# File-based project format
65-
*.iws
66-
67-
# IntelliJ
68-
out/
69-
70-
# mpeltonen/sbt-idea plugin
71-
.idea_modules/
72-
73-
# JIRA plugin
74-
atlassian-ide-plugin.xml
75-
76-
# Cursive Clojure plugin
77-
.idea/replstate.xml
78-
79-
# Crashlytics plugin (for Android Studio and IntelliJ)
80-
com_crashlytics_export_strings.xml
81-
crashlytics.properties
82-
crashlytics-build.properties
83-
fabric.properties
84-
85-
# Editor-based Rest Client
86-
.idea/httpRequests
87-
88-
# Android studio 3.1+ serialized cache file
89-
.idea/caches/build_file_checksums.ser
90-
91-
### JetBrains template
92-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
93-
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
94-
95-
# User-specific stuff
96-
.idea/**/workspace.xml
97-
.idea/**/tasks.xml
98-
.idea/**/usage.statistics.xml
99-
.idea/**/dictionaries
100-
.idea/**/shelf
101-
102-
# Generated files
103-
.idea/**/contentModel.xml
104-
105-
# Sensitive or high-churn files
106-
.idea/**/dataSources/
107-
.idea/**/dataSources.ids
108-
.idea/**/dataSources.local.xml
109-
.idea/**/sqlDataSources.xml
110-
.idea/**/dynamic.xml
111-
.idea/**/uiDesigner.xml
112-
.idea/**/dbnavigator.xml
113-
114-
# Gradle
115-
.idea/**/gradle.xml
116-
.idea/**/libraries
117-
118-
# Gradle and Maven with auto-import
119-
# When using Gradle or Maven with auto-import, you should exclude module files,
120-
# since they will be recreated, and may cause churn. Uncomment if using
121-
# auto-import.
122-
# .idea/artifacts
123-
# .idea/compiler.xml
124-
# .idea/jarRepositories.xml
125-
# .idea/modules.xml
126-
# .idea/*.iml
127-
# .idea/modules
128-
# *.iml
129-
# *.ipr
130-
131-
# CMake
132-
cmake-build-*/
133-
134-
# Mongo Explorer plugin
135-
.idea/**/mongoSettings.xml
136-
137-
# File-based project format
138-
*.iws
139-
140-
# IntelliJ
141-
out/
142-
143-
# mpeltonen/sbt-idea plugin
144-
.idea_modules/
145-
146-
# JIRA plugin
147-
atlassian-ide-plugin.xml
148-
149-
# Cursive Clojure plugin
150-
.idea/replstate.xml
151-
152-
# Crashlytics plugin (for Android Studio and IntelliJ)
153-
com_crashlytics_export_strings.xml
154-
crashlytics.properties
155-
crashlytics-build.properties
156-
fabric.properties
157-
158-
# Editor-based Rest Client
159-
.idea/httpRequests
160-
161-
# Android studio 3.1+ serialized cache file
162-
.idea/caches/build_file_checksums.ser
163-
164-
### Go template
165-
# Binaries for programs and plugins
166-
*.exe
167-
*.exe~
168-
*.dll
169-
*.so
170-
*.dylib
171-
172-
# Test binary, built with `go test -c`
173-
*.test
174-
175-
# Output of the go coverage tool, specifically when used with LiteIDE
176-
*.out
177-
178-
# Dependency directories (remove the comment below to include it)
179-
# vendor/
180-
1811
.idea

0 commit comments

Comments
 (0)