summaryrefslogtreecommitdiff
path: root/.editorconfig
blob: 05bbe5048dca457e358cd84a30b76486f1dbff24 (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
26
27
28
# For format see editorconfig.org
# Copyright 2022 Collabora Ltd.
# SPDX-License-Identifier: MIT

root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
tab_width = 8

[{*.py,*.sh,*.yml,meson.build}]
indent_size = 4
indent_style = space

[{*.c,*.h}]
indent_size = 2
indent_style = space

[Makefile.am]
indent_size = 8
indent_style = tab

[*.md]
indent_size = 4
indent_style = space
tab_width = 4