Add more Linux CI jobs to Azure Pipelines build (#20851)
[mono-project.git] / mono / .editorconfig
blob6cf31b1fd232542e2bbb471eeed15c9221ec5390
1 [*]
2 # We don't like trailing whitespace, but there are a lot of existing files that have it.  Don't automatically reformat them.
3 trim_trailing_whitespace = false
5 # See https://www.mono-project.com/community/contributing/coding-guidelines/
6 # Tabs, not spaces. 8 columns.  Braces don't go on a new line (except
7 # at the beginning of a function).  Space before opening parenthesis
8 # for function calls.
9 [*.{c,cpp,h,def}]
10 indent_style = tab
11 indent_size = 8
12 indent_brace_style = K&R
13 curly_bracket_next_line = false
14 spaces_around_operators = true
15 spaces_around_brackets = outside
17 [Makefile*]
18 indent_style = tab
20 [*.mk]
21 indent_style = tab