aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin <92656833+kevinthegreat1@users.noreply.github.com>2024-09-06 15:30:28 -0400
committerGitHub <noreply@github.com>2024-09-06 15:30:28 -0400
commit18be2e1f2c0f18cd0f7245f13c6483bc0b833992 (patch)
tree1e469f1a39e2d4df0c47b1260fb0d2ff6dc91f3a
parentd284e629a168f04f63d2c3223879263bc31125e1 (diff)
parent1ea63e9fa83bfb327002c99931a774162fc2403b (diff)
downloadSkyblocker-18be2e1f2c0f18cd0f7245f13c6483bc0b833992.tar.gz
Skyblocker-18be2e1f2c0f18cd0f7245f13c6483bc0b833992.tar.bz2
Skyblocker-18be2e1f2c0f18cd0f7245f13c6483bc0b833992.zip
Merge pull request #800 from kevinthegreat1/editor-config
Editor Config
-rw-r--r--.editorconfig28
1 files changed, 28 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 00000000..5e0dd9eb
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,28 @@
+root = true
+
+[*]
+charset = utf-8
+end_of_line = lf
+insert_final_newline = true
+tab_width = 4
+
+[*.gradle]
+indent_style = tab
+
+[*.java]
+indent_style = tab
+max_line_length = off
+ij_continuation_indent_size = 8 # IntelliJ default
+# Wrapping and Braces
+ij_java_keep_simple_blocks_in_one_line = true
+ij_java_keep_simple_classes_in_one_line = true
+ij_java_keep_simple_lambdas_in_one_line = true
+ij_java_keep_simple_methods_in_one_line = true
+
+[*.{json,properties}]
+indent_style = space
+indent_size = 2
+
+[.editorconfig]
+indent_style = space
+indent_size = 4