summaryrefslogtreecommitdiff
path: root/.editorconfig
blob: 7a54790803456f9bac6157c57ebc5415701d9632 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# SPDX-FileCopyrightText: 2023 The Folks Authors
# SPDX-License-Identifier: CC0-1.0

root = true

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

[*.vala]
indent_size = 2
indent_style = space
insert_final_newline = true

[meson.build]
indent_size = 2
indent_style = space

[*.yml]
indent_size = 2
indent_style = space

[*.md]
max_line_length = 80