Skip to content

Commit f0f534b

Browse files
committed
Initial commit.
0 parents  commit f0f534b

27 files changed

Lines changed: 2134 additions & 0 deletions

.gitattributes

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#
2+
# https://help.github.com/articles/dealing-with-line-endings/
3+
#
4+
# Linux start script should use lf
5+
/gradlew text eol=lf
6+
7+
# These are Windows script files and should use crlf
8+
*.bat text eol=crlf
9+
10+
# Binary files should be left untouched
11+
*.jar binary
12+

.gitignore

Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
# From https://github.com/github/gitignore/blob/master/Gradle.gitignore
2+
.gradle
3+
/build/
4+
5+
# Ignore Gradle GUI config
6+
gradle-app.setting
7+
8+
9+
10+
# Cache of project
11+
.gradletasknamecache
12+
13+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
14+
# gradle/wrapper/gradle-wrapper.properties
15+
16+
17+
18+
# From https://github.com/github/gitignore/blob/master/Java.gitignore
19+
*.class
20+
21+
# Mobile Tools for Java (J2ME)
22+
.mtj.tmp/
23+
24+
# Package Files #
25+
*.jar
26+
*.war
27+
*.ear
28+
29+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
30+
!gradle-wrapper.jar
31+
32+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
33+
hs_err_pid*
34+
35+
36+
# From https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore
37+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
38+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
39+
40+
# User-specific stuff:
41+
.idea/workspace.xml
42+
.idea/tasks.xml
43+
.idea/dictionaries
44+
.idea/vcs.xml
45+
.idea/jsLibraryMappings.xml
46+
47+
# Sensitive or high-churn files:
48+
.idea/dataSources.ids
49+
.idea/dataSources.xml
50+
.idea/dataSources.local.xml
51+
.idea/sqlDataSources.xml
52+
.idea/dynamic.xml
53+
.idea/uiDesigner.xml
54+
55+
# Gradle:
56+
.idea/gradle.xml
57+
.idea/libraries
58+
59+
# Mongo Explorer plugin:
60+
.idea/mongoSettings.xml
61+
62+
## File-based project format:
63+
*.iws
64+
65+
## Plugin-specific files:
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+
# Crashlytics plugin (for Android Studio and IntelliJ)
77+
com_crashlytics_export_strings.xml
78+
crashlytics.properties
79+
crashlytics-build.properties
80+
fabric.properties
81+
82+
83+
*.DS_Store
84+
.AppleDouble
85+
.LSOverride
86+
87+
# Icon must end with two \r
88+
Icon
89+
90+
91+
# Thumbnails
92+
._*
93+
94+
# Files that might appear in the root of a volume
95+
.DocumentRevisions-V100
96+
.fseventsd
97+
.Spotlight-V100
98+
.TemporaryItems
99+
.Trashes
100+
.VolumeIcon.icns
101+
.com.apple.timemachine.donotpresent
102+
103+
# Directories potentially created on remote AFP share
104+
.AppleDB
105+
.AppleDesktop
106+
Network Trash Folder
107+
Temporary Items
108+
.apdisk
109+
110+
.vscode/

0 commit comments

Comments
 (0)