mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-05 02:32:31 +01:00
628100c19f
Quick rundown of benefits: - Much faster: - Autotools (with autogen): 22 seconds - Meson: 7 seconds - Meson (with ccache): 2 seconds - Simpler: - ~1000 lines smaller - Single simple language - Potentially better Windows (Visual Studio) support What is not done: - Complete Windows support - OSX support (easy) Closes #2013 Closes #1937 Closes #1803
20 lines
328 B
INI
20 lines
328 B
INI
# EditorConfig is awesome: http://EditorConfig.org
|
|
|
|
# top-most EditorConfig file
|
|
root = true
|
|
|
|
[*.{c,cpp,h,hpp,m}]
|
|
indent_style = tab
|
|
indent_size = 4
|
|
end_of_line = lf
|
|
|
|
[*.cs]
|
|
indent_style = space
|
|
indent_size = 4
|
|
end_of_line = lf
|
|
|
|
[{meson.build,meson_options.txt}]
|
|
indent_size = 2
|
|
indent_style = space
|
|
insert_final_newline = true
|