summaryrefslogtreecommitdiff
path: root/.editorconfig
blob: 666e706c09b7f377eadd101800e8f1eeb2dc5d1a (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
# Editor configuration, see https://editorconfig.org

# This is the top-most editorconfig file.
root = true


# General settings.
[*]
trim_trailing_whitespace = true
insert_final_newline = true


# Source code.
[*.{c,cpp,h,hpp}]
indent_style = space
indent_size = 2


# Trailing spaces matter for markdown files
[*.md]
trim_trailing_whitespace = false
max_line_length = off


# Tabs matter for makefiles and .gitmodules
[{makefile*,Makefile*,*.mk,*.mak,*.makefile,*.Makefile,GNUmakefile,BSDmakefile,Makevars*,*.gitmodules}]
indent_style = tab
indent_size = 2