Skip to content

Commit af0cd01

Browse files
committed
Initial work on v2
0 parents  commit af0cd01

36 files changed

+2913
-0
lines changed

.editorconfig

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

.gitattributes

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Normalize as LF in the repository, OS native locally
2+
* text eol=lf
3+
4+
# These are explicitly windows files and should use crlf
5+
*.bat text eol=crlf
6+
7+
# These files are text and should be normalized (Convert crlf => lf)
8+
*.bash text eol=lf
9+
*.css text diff=css
10+
*.htm text diff=html
11+
*.html text diff=html
12+
*.java text diff=java
13+
*.sh text eol=lf
14+
15+
# These files are binary and should be left untouched
16+
# (binary is a macro for -text -diff)
17+
*.a binary
18+
*.lib binary
19+
*.icns binary
20+
*.png binary
21+
*.jpg binary
22+
*.jpeg binary
23+
*.gif binary
24+
*.ico binary
25+
*.mov binary
26+
*.mp4 binary
27+
*.mp3 binary
28+
*.flv binary
29+
*.fla binary
30+
*.swf binary
31+
*.gz binary
32+
*.zip binary
33+
*.jar binary
34+
*.tar binary
35+
*.tar.gz binary
36+
*.7z binary
37+
*.ttf binary
38+
*.pyc binary
39+
*.gpg binary
40+
*.bin binary

.gitignore

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# include specific folders in .idea/
2+
!.idea
3+
.idea/*
4+
!/.idea/copyright
5+
!/.idea/codeStyles
6+
!/.idea/inspectionProfiles
7+
8+
# gradle
9+
.gradle/
10+
build/
11+
12+
# eclipse
13+
*.classpath
14+
*.project
15+
*.settings
16+
/bin/
17+
/subprojects/*/bin/
18+
.metadata/
19+
atlassian-ide-plugin.xml
20+
21+
# NetBeans
22+
.nb-gradle
23+
.nb-gradle-properties
24+
25+
# Vim
26+
*.sw[nop]
27+
28+
# Emacs
29+
*~
30+
\#*\#
31+
.\#*
32+
33+
# Textmate
34+
.textmate
35+
36+
# Sublime Text
37+
*.sublime-*
38+
39+
# jEnv
40+
.java-version
41+
42+
# macOS
43+
.DS_Store
44+
45+
# HPROF
46+
*.hprof
47+
48+
# Work dirs
49+
/incoming-distributions
50+
/intTestHomeDir
51+
52+
# Logs
53+
/*.log
54+
55+
# delombok
56+
*/src/main/lombok
57+
58+
# CloudNet
59+
.launchermeta/

0 commit comments

Comments
 (0)