summaryrefslogtreecommitdiff
path: root/.editorconfig
blob: 235d4f3f9aba58af63475af5d17af7ca4be1419b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# EditorConfig file, see editorconfig.org

# This is top level folder, don't look up the tree
root = true

# Windows-style newlines, yeah!
# Indentation = 4 spaces, trim trailing spaces
[{*.cpp,*.h,*.c}]
end_of_line = crlf
insert_final_newline = true
indent_style = space
indent_size = 4
trim_trailing_whitespace = true

#[*]
# defs for all other file types go here...

###