2020-04-25 10:01:16 +00:00
|
|
|
# Libretro coding standards
|
|
|
|
# See https://libretro.readthedocs.io/en/latest/development/coding-standards/
|
|
|
|
# Or search for "Libretro Coding Standards"
|
2019-02-18 19:06:11 +00:00
|
|
|
|
|
|
|
root = true
|
|
|
|
|
|
|
|
[*]
|
|
|
|
end_of_line = lf
|
|
|
|
insert_final_newline = true
|
2020-04-25 10:01:16 +00:00
|
|
|
trim_trailing_whitespace = true
|
2019-02-18 19:06:11 +00:00
|
|
|
charset = utf-8
|
|
|
|
|
|
|
|
[Makefile]
|
2020-04-25 10:01:16 +00:00
|
|
|
indent_style = space
|
|
|
|
indent_size = 3
|
2019-02-18 19:06:11 +00:00
|
|
|
|
|
|
|
[*.{c,h}]
|
|
|
|
indent_style = space
|
2020-04-25 10:01:16 +00:00
|
|
|
indent_size = 3
|
|
|
|
max_line_length = 80
|