Added .editorconfig file, to help enforce styling guidelines

This commit is contained in:
Keith Bowes 2020-02-13 10:13:28 -05:00
parent bed7b707f2
commit 30520d11d6

19
.editorconfig Normal file
View file

@ -0,0 +1,19 @@
root = true
[{*.c}]
# Standard config
charset = utf-8
end_of_line = lf
indent_style = tab
insert_final_newline = true
tab_width = 8
trim_trailing_whitespace = true
# Non-standard editor extensions
line_comment = /*
block_comment_start = /*
block_comment_end = */
curly_bracket_next_line = false
max_line_length = 80
spaces_around_brackets = outside
spaces_around_operators = true