aboutsummaryrefslogtreecommitdiffstats
path: root/.editorconfig
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2022-09-19 21:34:24 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2022-09-21 01:12:56 +0200
commit472439d3c5abc271f22a8460680b9aecfb4eb323 (patch)
tree3fdb0277df8e583adde7d70268099b00dc1a80e9 /.editorconfig
parentfeat(language): problem desugaring (diff)
downloadrefinery-472439d3c5abc271f22a8460680b9aecfb4eb323.tar.gz
refinery-472439d3c5abc271f22a8460680b9aecfb4eb323.tar.zst
refinery-472439d3c5abc271f22a8460680b9aecfb4eb323.zip
build: IntelliJ support
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