Skip to content

Commit 9f5d754

Browse files
committed
initial
0 parents  commit 9f5d754

File tree

1 file changed

+126
-0
lines changed

1 file changed

+126
-0
lines changed

.gitignore

Lines changed: 126 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Gradle template
3+
.gradle
4+
/build/
5+
6+
# Ignore Gradle GUI config
7+
gradle-app.setting
8+
9+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
10+
!gradle-wrapper.jar
11+
12+
# Cache of project
13+
.gradletasknamecache
14+
15+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
16+
# gradle/wrapper/gradle-wrapper.properties
17+
### Kotlin template
18+
# Compiled class file
19+
*.class
20+
21+
# Log file
22+
*.log
23+
24+
# BlueJ files
25+
*.ctxt
26+
27+
# Mobile Tools for Java (J2ME)
28+
.mtj.tmp/
29+
30+
# Package Files #
31+
*.jar
32+
*.war
33+
*.nar
34+
*.ear
35+
*.zip
36+
*.tar.gz
37+
*.rar
38+
39+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
40+
hs_err_pid*
41+
### Java template
42+
# Compiled class file
43+
*.class
44+
45+
# Log file
46+
*.log
47+
48+
# BlueJ files
49+
*.ctxt
50+
51+
# Mobile Tools for Java (J2ME)
52+
.mtj.tmp/
53+
54+
# Package Files #
55+
*.jar
56+
*.war
57+
*.nar
58+
*.ear
59+
*.zip
60+
*.tar.gz
61+
*.rar
62+
63+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
64+
hs_err_pid*
65+
### JetBrains template
66+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
67+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
68+
69+
# User-specific stuff
70+
.idea/**/workspace.xml
71+
.idea/**/tasks.xml
72+
.idea/**/usage.statistics.xml
73+
.idea/**/dictionaries
74+
.idea/**/shelf
75+
76+
# Sensitive or high-churn files
77+
.idea/**/dataSources/
78+
.idea/**/dataSources.ids
79+
.idea/**/dataSources.local.xml
80+
.idea/**/sqlDataSources.xml
81+
.idea/**/dynamic.xml
82+
.idea/**/uiDesigner.xml
83+
.idea/**/dbnavigator.xml
84+
85+
# Gradle
86+
.idea/**/gradle.xml
87+
.idea/**/libraries
88+
89+
# Gradle and Maven with auto-import
90+
# When using Gradle or Maven with auto-import, you should exclude module files,
91+
# since they will be recreated, and may cause churn. Uncomment if using
92+
# auto-import.
93+
# .idea/modules.xml
94+
# .idea/*.iml
95+
# .idea/modules
96+
97+
# CMake
98+
cmake-build-*/
99+
100+
# Mongo Explorer plugin
101+
.idea/**/mongoSettings.xml
102+
103+
# File-based project format
104+
*.iws
105+
106+
# IntelliJ
107+
out/
108+
109+
# mpeltonen/sbt-idea plugin
110+
.idea_modules/
111+
112+
# JIRA plugin
113+
atlassian-ide-plugin.xml
114+
115+
# Cursive Clojure plugin
116+
.idea/replstate.xml
117+
118+
# Crashlytics plugin (for Android Studio and IntelliJ)
119+
com_crashlytics_export_strings.xml
120+
crashlytics.properties
121+
crashlytics-build.properties
122+
fabric.properties
123+
124+
# Editor-based Rest Client
125+
.idea/httpRequests
126+

0 commit comments

Comments
 (0)