Ye, tabs be gone!

It appears that most of our non-C++/Lua source files are using spaces for
indentation, (except Makefile.am). Added rules to accommodate that, and fix
wrong indentation in Changelog.txt when using github editor.
master
Karl F 2016-11-07 17:35:22 +01:00
parent b57d94a6eb
commit a99201b967
1 changed files with 10 additions and 1 deletions

View File

@ -5,8 +5,17 @@ root = true
# all files, globally use these rules:
[*]
indent_style = tab
indent_style = space
indent_size = 4
end_of_line = lf
insert_final_newline = true
charset = utf-8
trim_trailing_whitespace = true
# but definitly tabs for:
[*.{cpp,h,lua,am}]
indent_style = tab
# we apparently use spaces for:
[*.{json,txt,md,yml}]
indent_style = space