summarylogtreecommitdiffstats
path: root/.editorconfig
blob: a6f00d293f40a29910a9f6d65415c27cc37946ea (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
# https://editorconfig.org

# SPDX-FileCopyrightText: Arch Linux contributors
# SPDX-License-Identifier: 0BSD

root = true

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

[*.{diff,patch}]
end_of_line = lf
trim_trailing_whitespace = false

[PKGBUILD]
indent_size = 4
indent_style = tab  # status quo when I adopted the PKGBUILD

[*.json]
indent_size = 2