Files @ r25034:a41a896ed3c5
Branch filter:

Location: cpp/openttd-patchpack/source/.editorconfig

Patric Stout
Codechange: rework codeflow introduced in 098d5b22 (#8837)

It didn't sit well to me, how I wrote the commit initially. First
casting a variable into another, only to write it back into the
originally feels wrong.

This flow makes a bit more sense to me.
1
2
3
4
5
6
7
8
9
root = true

[*]
insert_final_newline = true
trim_trailing_whitespace = true

[*.{c,cpp,h,hpp}]
indent_style = tab
charset = utf-8