mu/.editorconfig

35 lines
872 B
INI
Raw Normal View History

2019-04-13 11:09:29 +02:00
#-*-mode:conf-*-
# editorconfig file (see EditorConfig.org), with some
# lowest-denominator settings that should work for many editors.
2019-04-13 11:09:29 +02:00
root = true # this is the top-level
[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8
trim_trailing_whitespace = true
# The "best" answer is "tabs-for-indentation; spaces for alignment".
2019-04-13 11:09:29 +02:00
[*.{cc,cpp,hh,hpp}]
indent_style = tab
2019-04-13 11:09:29 +02:00
indent_size = 8
max_line_length = 90
2019-04-13 11:09:29 +02:00
[*.{c,h}]
indent_style = tab
2019-04-13 11:09:29 +02:00
indent_size = 8
max_line_length = 80
[configure.ac]
indent_style = tab
2019-04-13 11:09:29 +02:00
indent_size = 4
max_line_length = 100
[Makefile.am]
indent_style = tab
indent_size = 8
max_line_length = 100