chore(style): tune up .editorconfig

This commit is contained in:
fallenoak 2025-12-27 18:27:57 -06:00
parent 1d9be878e3
commit d57337fe48
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D

View File

@ -1,17 +1,26 @@
root = true root = true
[src/**/*] [*]
charset = utf-8 charset = utf-8
end_of_line = lf end_of_line = lf
indent_size = 4
indent_style = space indent_style = space
insert_final_newline = true insert_final_newline = true
trim_trailing_whitespace = true trim_trailing_whitespace = true
[test/**/*] [*.md]
charset = utf-8 trim_trailing_whitespace = false
end_of_line = lf
[src/**/*]
indent_size = 4 indent_size = 4
indent_style = space
insert_final_newline = true [test/**/*]
trim_trailing_whitespace = true indent_size = 4
# Ignore vendor
[vendor/**/*]
charset = unset
end_of_line = unset
indent_size = unset
indent_style = unset
insert_final_newline = unset
trim_trailing_whitespace = unset