summaryrefslogtreecommitdiff
path: root/.editorconfig
blob: f24cd504ba4b4ce3758f7865359295a5e0a637e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# This is an EditorConfig file
# Learn more at http://editorconfig.org

root = true

# All files are UNIX-style and UTF-8
[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8
trim_trailing_whitespace = true

# Makefiles use tabs
[Makefile]
indent_style = tab

# C code uses tabs
[*.{c,h}]
indent_style = tab