2017-10-31 16:13:40 +01:00
|
|
|
# EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs
|
|
|
|
# editorconfig.org
|
|
|
|
|
|
|
|
root = true
|
|
|
|
|
|
|
|
[*]
|
2024-03-02 13:23:34 +01:00
|
|
|
end_of_line = lf
|
2017-10-31 16:13:40 +01:00
|
|
|
indent_style = space
|
2019-04-19 00:59:51 +02:00
|
|
|
indent_size = 4
|
2017-10-31 16:13:40 +01:00
|
|
|
charset = utf-8
|
|
|
|
trim_trailing_whitespace = true
|
|
|
|
insert_final_newline = true
|
|
|
|
|
2024-03-02 13:23:34 +01:00
|
|
|
[{*.yaml,*.yml}] # To match GitHub Actions formatting
|
|
|
|
indent_size = 2
|
|
|
|
|
2017-10-31 16:13:40 +01:00
|
|
|
[*.md]
|
|
|
|
trim_trailing_whitespace = false
|
2018-02-03 16:47:28 +01:00
|
|
|
|
2024-03-02 13:23:34 +01:00
|
|
|
[{Makefile,*.mk}]
|
2019-07-05 06:36:50 +02:00
|
|
|
indent_style = tab
|
2018-02-03 16:47:28 +01:00
|
|
|
|
2024-03-02 13:23:34 +01:00
|
|
|
# Don't override anything in `lib/`...
|
2018-02-03 16:47:28 +01:00
|
|
|
[lib/**]
|
2024-03-02 13:23:34 +01:00
|
|
|
indent_style = unset
|
|
|
|
indent_size = unset
|
|
|
|
tab_width = unset
|
2018-02-03 16:47:28 +01:00
|
|
|
end_of_line = unset
|
2024-03-02 13:23:34 +01:00
|
|
|
charset = unset
|
|
|
|
spelling_language = unset
|
|
|
|
trim_trailing_whitespace = unset
|
|
|
|
insert_final_newline = unset
|
|
|
|
|
|
|
|
# ...except QMK's `lib/python`.
|
|
|
|
[{*.py,lib/python/**.py}]
|
|
|
|
end_of_line = lf
|
|
|
|
indent_style = space
|
|
|
|
indent_size = 4
|
|
|
|
charset = utf-8
|
|
|
|
trim_trailing_whitespace = true
|
|
|
|
insert_final_newline = true
|
|
|
|
max_line_length = 200
|