1
0
Fork 0
mirror of https://github.com/bjornbytes/lovr.git synced 2024-07-02 12:33:52 +00:00
lovr/.editorconfig
trim_trailing_whitespace=ignore is not an acceptable value. strconv.ParseBool: parsing "ignore": invalid syntax insert_final_newline=ignore is not an acceptable value. strconv.ParseBool: parsing "ignore": invalid syntax
bjorn c06a20cd78 Update .editorconfig;
- Only apply to stuff in src folder.
- Add lua extension.
- Ignore lib folder.

Considering moving it into src or removing it completely.
2019-12-31 18:39:29 -08:00

17 lines
302 B
INI

# editorconfig.org
root = true
[src/**.{c,h,lua}]
charset = utf-8
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true
[src/lib/**]
charset = ignore
indent_style = ignore
indent_size = ignore
insert_final_newline = ignore
trim_trailing_whitespace = ignore