add .editorconfig

This commit is contained in:
ffranr 2025-12-09 12:44:55 +00:00
parent a1ef642be2
commit 5295661f08
No known key found for this signature in database
GPG key ID: C4A995ED1B728904

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.
[*.md]
end_of_line = lf
insert_final_newline = true
max_line_length = 80
# 8 space indentation for Golang code.
[*.go]
indent_style = tab
indent_size = 8
max_line_length = 80