aboutsummaryrefslogtreecommitdiffstats
path: root/.editorconfig
diff options
context:
space:
mode:
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig6
1 files changed, 6 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
index 60e56bf7..81e5fda1 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -5,10 +5,16 @@ charset = utf-8
5end_of_line = lf 5end_of_line = lf
6trim_trailing_whitespace = true 6trim_trailing_whitespace = true
7insert_final_newline = true 7insert_final_newline = true
8max_line_length = 80
9ij_wrap_on_typing = true
8 10
9[*.{gradle,java,mwe2,xtend,xtext}] 11[*.{gradle,java,mwe2,xtend,xtext}]
10indent_style = tab 12indent_style = tab
11indent_size = 4 13indent_size = 4
14# Mimic Eclipse continuation indent style in IntelliJ
15max_line_length = 120
16ij_continuation_indent_size = 8
17ij_any_indent_case_from_switch = false
12 18
13[*.{grammar,html,js,json,jsx,scss,ts,tsx,yml}] 19[*.{grammar,html,js,json,jsx,scss,ts,tsx,yml}]
14indent_style = space 20indent_style = space