editorconfig: add minimal editorconfig

GH parses the .editorconfig for displaying code. Add minimal
editorconfig to display our code, the STM code looks good at first
glance, too.
This commit is contained in:
Marc Kleine-Budde 2022-11-13 14:54:19 +01:00 committed by fenugrec
parent 7f97321149
commit 32fc94118e

16
.editorconfig Normal file
View File

@ -0,0 +1,16 @@
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
indent_size = 4
indent_style = tab
insert_final_newline = true
trim_trailing_whitespace = true
[lib/**]
indent_size = 2
indent_style = space