Skip to content

Commit 249bed4

Browse files
committed
Initial Commit
0 parents  commit 249bed4

File tree

4 files changed

+127
-0
lines changed

4 files changed

+127
-0
lines changed

.editorconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
# Unix-style newlines with a newline ending every file
7+
[*]
8+
end_of_line = lf
9+
insert_final_newline = true
10+
charset = utf-8
11+
indent_style = tab
12+
indent_size = 4

.gitattributes

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Handle line endings automatically for files detected as text
2+
# and leave all files detected as binary untouched.
3+
* text=auto eol=lf
4+
5+
*.bat text eol=crlf
6+
7+
#
8+
# The above will handle all files NOT found below
9+
#
10+
# These files are text and should be normalized (Convert crlf => lf)
11+
*.css text
12+
*.df text
13+
*.htm text
14+
*.html text
15+
*.java text
16+
*.js text
17+
*.json text
18+
*.jsp text
19+
*.jspf text
20+
*.properties text
21+
*.sh text
22+
*.sql text
23+
*.svg text
24+
*.tld text
25+
*.txt text
26+
*.xml text
27+
28+
# These files are binary and should be left untouched
29+
# (binary is a macro for -text -diff)
30+
*.class binary
31+
*.dll binary
32+
*.ear binary
33+
*.gif binary
34+
*.ico binary
35+
*.jar binary
36+
*.jpg binary
37+
*.jpeg binary
38+
*.png binary
39+
*.so binary
40+
*.war binary

.gitignore

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# Build #
2+
#########
3+
MANIFEST.MF
4+
dependency-reduced-pom.xml
5+
generated
6+
7+
# Compiled #
8+
############
9+
bin
10+
build
11+
dist
12+
lib
13+
out
14+
run
15+
classes/
16+
target
17+
*.com
18+
*.class
19+
*.dll
20+
*.exe
21+
*.o
22+
*.so
23+
24+
# Databases #
25+
#############
26+
*.db
27+
*.sql
28+
*.sqlite
29+
30+
# Packages #
31+
############
32+
*.7z
33+
*.dmg
34+
*.gz
35+
*.iso
36+
*.rar
37+
*.tar
38+
*.zip
39+
40+
# Repository #
41+
##############
42+
.git
43+
44+
# Logging #
45+
###########
46+
/logs
47+
*.log
48+
49+
# Misc #
50+
########
51+
*.bak
52+
53+
# System #
54+
##########
55+
.DS_Store
56+
ehthumbs.db
57+
Thumbs.db
58+
59+
# Project #
60+
###########
61+
.classpath
62+
.externalToolBuilders
63+
.gradle
64+
.idea
65+
.project
66+
.settings
67+
eclipse
68+
nbproject
69+
atlassian-ide-plugin.xml
70+
build.xml
71+
nb-configuration.xml
72+
*.iml
73+
*.ipr
74+
*.iws

index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
test

0 commit comments

Comments
 (0)