Editorconfig is a nice tool that simplifies maintenance of consistent coding style. See http://editorconfig.org for details. Signed-off-by: Pavel Aronsky <pavel.aronsky@daynix.com> Signed-off-by: Dmitry Fleytman <dfleytma@redhat.com>
18 lines
374 B
INI
18 lines
374 B
INI
# 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...
|
|
|
|
###
|