Skip to content

Commit 487d393

Browse files
author
Vincent Nadoll
committed
Add project configuration
1 parent f2b33b4 commit 487d393

File tree

2 files changed

+27
-10
lines changed

2 files changed

+27
-10
lines changed

.editorconfig

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_size = 4
6+
indent_style = space
7+
insert_final_newline = true
8+
trim_trailing_whitespace = true
9+
10+
[*.java]
11+
max_line_length = 120
12+
13+
[*.md]
14+
trim_trailing_whitespace = false

.gitignore

+13-10
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1+
### Maven ###
12
target/
2-
pom.xml.tag
3-
pom.xml.releaseBackup
4-
pom.xml.versionsBackup
5-
pom.xml.next
6-
release.properties
7-
dependency-reduced-pom.xml
8-
buildNumber.properties
9-
.mvn/timing.properties
10-
# https://github.com/takari/maven-wrapper#usage-without-binary-jar
11-
.mvn/wrapper/maven-wrapper.jar
3+
4+
### IntelliJ IDEA ###
5+
.idea
6+
*.iws
7+
*.iml
8+
*.ipr
9+
10+
### VS Code ###
11+
.vscode/
12+
13+
### MacOS ###
14+
.DS_Store

0 commit comments

Comments
 (0)