summary refs log tree commit diff
path: root/.editorconfig
blob: 2d185af44f43bb6890151e24e7d0a38fb5259cb8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
max_line_length = 100
trim_trailing_whitespace = true

[justfile]
indent_size = 4
indent_style = space

[*.{md,nix}]
indent_size = 2
indent_style = space

[*.md]
max_line_length = 80

[{.envrc,flake.lock}]
# We really don't care for this file
max_line_length = 1000