Skip to content

Commit 059169d

Browse files
(chore) minor cleanups (#511)
* (chore) minor cleanups * add html spacing
1 parent 6097693 commit 059169d

File tree

5 files changed

+43
-55
lines changed

5 files changed

+43
-55
lines changed

.editorconfig

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
trim_trailing_whitespace = true
7+
insert_final_newline = true
8+
indent_size = 2
9+
indent_style = space
10+
11+
[Makefile]
12+
indent_size = 4
13+
indent_style = tab
14+
15+
[*.{java,html}]
16+
indent_size = 4
17+
18+
[*.md]
19+
trim_trailing_whitespace = false

.gitignore

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
1+
.DS_Store
2+
*~
3+
4+
# Eclipse
15
.project
26
.classpath
37
.settings
48
target
59
work
610
.checkstyle
711

8-
# INTELLIJ
9-
.idea
12+
# IntelliJ
13+
/.idea/
1014
*.iml
1115
*.iws
1216
*.ipr

.travis.yml

Lines changed: 0 additions & 36 deletions
This file was deleted.

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ buildPlugin(configurations: [
44
[platform: 'linux', jdk: '8'],
55
[platform: 'linux', jdk: '11'],
66
[platform: 'windows', jdk: '11'],
7-
])
7+
])

checkstyle.xml

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.2//EN" "http://www.puppycrawl.com/dtds/configuration_1_2.dtd">
2+
<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.2//EN"
3+
"http://www.puppycrawl.com/dtds/configuration_1_2.dtd">
34
<module name="Checker">
4-
<module name="FileTabCharacter" />
5-
<module name="NewlineAtEndOfFile">
6-
<property name="lineSeparator" value="lf" />
7-
</module>
8-
<module name="RegexpSingleline">
9-
<property name="format" value="\s+$"/>
10-
<property name="message" value="Trailing spaces are not allowed."/>
11-
</module>
12-
<module name="TreeWalker">
13-
<module name="ImportOrder">
14-
<property name="separatedStaticGroups" value="true" />
15-
<property name="option" value="bottom" />
16-
</module>
17-
<module name="UnusedImports" />
18-
<module name="AvoidStarImport" />
5+
<module name="FileTabCharacter"/>
6+
<module name="NewlineAtEndOfFile">
7+
<property name="lineSeparator" value="lf"/>
8+
</module>
9+
<module name="RegexpSingleline">
10+
<property name="format" value="\s+$"/>
11+
<property name="message" value="Trailing spaces are not allowed."/>
12+
</module>
13+
<module name="TreeWalker">
14+
<module name="ImportOrder">
15+
<property name="separatedStaticGroups" value="true"/>
16+
<property name="option" value="bottom"/>
1917
</module>
18+
<module name="UnusedImports"/>
19+
<module name="AvoidStarImport"/>
20+
</module>
2021
</module>

0 commit comments

Comments
 (0)