From 19f9179fc9f1791540ea29852afd3f3ae1e44b2b Mon Sep 17 00:00:00 2001 From: sergiorussia <22471371+sergiorussia@users.noreply.github.com> Date: Wed, 1 May 2019 00:24:31 +0300 Subject: [PATCH] editorconfig support --- .editorconfig | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..181f63e --- /dev/null +++ b/.editorconfig @@ -0,0 +1,20 @@ +[*] +charset=utf-8 +end_of_line=lf +indent_size=2 +indent_style=space +insert_final_newline=true +trim_trailing_whitespace = true + +[*.java] +indent_size=4 + +# also configure imports order manually as follows: +# import java.* +# +# import javax.* +# +# import com.samskivert.* +# import com.threerings.* +# import all other imports +# import static all other imports