1
0
mirror of https://github.com/djcb/mu.git synced 2024-06-20 06:46:50 +02:00
mu/.editorconfig
Dirk-Jan C. Binnema 5fbebbff86 tweak coding style / configuration
clang-format is a pain :-(
2022-02-13 14:33:12 +02:00

35 lines
872 B
INI

#-*-mode:conf-*-
# editorconfig file (see EditorConfig.org), with some
# lowest-denominator settings that should work for many editors.
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".
[*.{cc,cpp,hh,hpp}]
indent_style = tab
indent_size = 8
max_line_length = 90
[*.{c,h}]
indent_style = tab
indent_size = 8
max_line_length = 80
[configure.ac]
indent_style = tab
indent_size = 4
max_line_length = 100
[Makefile.am]
indent_style = tab
indent_size = 8
max_line_length = 100