~jan0sch/smederee

~jan0sch/smederee/.editorconfig
 ..
0 # EditorConfig is awesome: https://EditorConfig.org
1
2 # top-most EditorConfig file
3 root = true
4
5 # Unix-style newlines with a newline ending every file
6 [*]
7 end_of_line = lf
8 insert_final_newline = true
9
10 # Matches multiple files with brace expansion notation
11
12 # Scala
13 [*.{scala,sbt,sc}]
14 charset = utf-8
15 indent_style = space
16 indent_size = 4
17 max_line_length = 120
18
19 # Twirl
20 [*.scala.{html,txt}]
21 charset = utf-8
22 indent_style = space
23 indent_size = 2
24