Skip to content

Commit 37de53c

Browse files
committed
Initial commit
0 parents  commit 37de53c

File tree

2 files changed

+214
-0
lines changed

2 files changed

+214
-0
lines changed

.gitattributes

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Set the default behavior, in case people don't have core.autocrlf set.
2+
* text=auto
3+
4+
# Explicitly declare text files you want to always be normalized and converted
5+
# to LF line endings on checkout.
6+
*.afm text eol=lf
7+
*.cmap text eol=lf
8+
*.crt text eol=lf
9+
*.cs text eol=lf
10+
*.html text eol=lf
11+
*.java text eol=lf ident
12+
*.lng text eol=lf
13+
*.md text eol=lf
14+
*.pom text eol=lf
15+
*.properties text eol=lf
16+
*.txt text eol=lf
17+
*.xfdf text eol=lf
18+
*.xml text eol=lf
19+
20+
# Declare files that will always have CRLF line endings on checkout.
21+
*.bat text eol=crlf
22+
*.csproj text eol=crlf
23+
*.sln text eol=crlf
24+
25+
# Denote all files that are truly binary and should not be modified.
26+
*.bmp binary
27+
*.cmp binary
28+
*.dib binary
29+
*.gif binary
30+
*.j2k binary
31+
*.jb2 binary
32+
*.jp2 binary
33+
*.jpg binary
34+
*.key binary
35+
*.otf binary
36+
*.pdf binary
37+
*.pfb binary
38+
*.png binary
39+
*.tif binary
40+
*.tiff binary
41+
*.ttc binary
42+
*.ttf binary
43+
*.wmf binary

.gitignore

Lines changed: 171 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,171 @@
1+
# Created by https://www.gitignore.io
2+
3+
### Java ###
4+
*.class
5+
6+
# Mobile Tools for Java (J2ME)
7+
.mtj.tmp/
8+
9+
# Package Files #
10+
*.jar
11+
*.war
12+
*.ear
13+
14+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
15+
hs_err_pid*
16+
17+
18+
### Eclipse ###
19+
*.pydevproject
20+
.metadata
21+
.gradle
22+
bin/
23+
tmp/
24+
*.tmp
25+
*.bak
26+
*.swp
27+
*~.nib
28+
local.properties
29+
.settings/
30+
.loadpath
31+
32+
# Eclipse Core
33+
.project
34+
35+
# External tool builders
36+
.externalToolBuilders/
37+
38+
# Locally stored "Eclipse launch configurations"
39+
*.launch
40+
41+
# CDT-specific
42+
.cproject
43+
44+
# JDT-specific (Eclipse Java Development Tools)
45+
.classpath
46+
47+
# PDT-specific
48+
.buildpath
49+
50+
# sbteclipse plugin
51+
.target
52+
53+
# TeXlipse plugin
54+
.texlipse
55+
56+
57+
### Intellij ###
58+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
59+
60+
*.iml
61+
62+
## Directory-based project format:
63+
.idea/
64+
# if you remove the above rule, at least ignore the following:
65+
66+
# User-specific stuff:
67+
# .idea/workspace.xml
68+
# .idea/tasks.xml
69+
# .idea/dictionaries
70+
71+
# Sensitive or high-churn files:
72+
# .idea/dataSources.ids
73+
# .idea/dataSources.xml
74+
# .idea/sqlDataSources.xml
75+
# .idea/dynamic.xml
76+
# .idea/uiDesigner.xml
77+
78+
# Gradle:
79+
# .idea/gradle.xml
80+
# .idea/libraries
81+
82+
# Mongo Explorer plugin:
83+
# .idea/mongoSettings.xml
84+
85+
## File-based project format:
86+
*.ipr
87+
*.iws
88+
89+
## Plugin-specific files:
90+
91+
# IntelliJ
92+
out/
93+
94+
# mpeltonen/sbt-idea plugin
95+
.idea_modules/
96+
97+
# JIRA plugin
98+
atlassian-ide-plugin.xml
99+
100+
# Crashlytics plugin (for Android Studio and IntelliJ)
101+
com_crashlytics_export_strings.xml
102+
crashlytics.properties
103+
crashlytics-build.properties
104+
105+
106+
### NetBeans ###
107+
nbproject/private/
108+
build/
109+
nbbuild/
110+
dist/
111+
nbdist/
112+
nbactions.xml
113+
nb-configuration.xml
114+
.nb-gradle/
115+
116+
117+
### Linux ###
118+
*~
119+
120+
# KDE directory preferences
121+
.directory
122+
123+
# Linux trash folder which might appear on any partition or disk
124+
.Trash-*
125+
126+
127+
### Windows ###
128+
# Windows image file caches
129+
Thumbs.db
130+
ehthumbs.db
131+
132+
# Folder config file
133+
Desktop.ini
134+
135+
# Recycle Bin used on file shares
136+
$RECYCLE.BIN/
137+
138+
# Windows Installer files
139+
*.cab
140+
*.msi
141+
*.msm
142+
*.msp
143+
144+
# Windows shortcuts
145+
*.lnk
146+
147+
target/
148+
nbactions*.xml
149+
.checkstyle
150+
.pmd
151+
.pmdruleset.xml
152+
153+
154+
.vagrant/
155+
156+
### Gradle ###
157+
.gradle
158+
/build/
159+
160+
# Ignore Gradle GUI config
161+
gradle-app.setting
162+
163+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
164+
!gradle-wrapper.jar
165+
166+
# Cache of project
167+
.gradletasknamecache
168+
169+
### Gradle Patch ###
170+
**/build/
171+

0 commit comments

Comments
 (0)