⭐️ A friendly language for building type-safe, scalable systems!
1# EditorConfig helps developers define and maintain consistent
2# coding styles between different editors and IDEs
3# editorconfig.org
4
5# top-most EditorConfig file
6root = true
7
8# Matches multiple files with brace expansion notation
9# Set default charset
10[*]
11end_of_line = lf
12charset = utf-8
13trim_trailing_whitespace = true
14insert_final_newline = true
15indent_style = space
16indent_size = 2
17
18[*.{gleam, erl, hrl, ex, mjs, js, ts, sh}]
19max_line_length = 80
20
21[*.{rs, .erl, .hrl}]
22indent_size = 4
23
24[Makefile]
25indent_style = tab
26indent_size = 4