Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Records the formatting conventions the tracked files already follow.
# https://editorconfig.org
root = true

[*]
charset = utf-8
end_of_line = lf

# trim_trailing_whitespace is scoped to Java rather than applied to every file
# because LICENSE has trailing whitespace on three lines. insert_final_newline
# is deliberately left unset: the .java sources end without a final newline
# while README.md, LICENSE, and .gitignore end with one.
[*.java]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true