Update .editorconfig

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Ludy 2025-06-19 22:35:41 +02:00 committed by GitHub
parent 689ae3c397
commit 764a409884
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -28,20 +28,25 @@ trim_trailing_whitespace = false
indent_size = 2 indent_size = 2
[*.css] [*.css]
# CSS files typically use an indent size of 2 spaces for better readability and alignment with community standards.
indent_size = 2 indent_size = 2
[*.yaml] [*.yaml]
# YAML files use an indent size of 2 spaces to maintain consistency with common YAML formatting practices.
indent_size = 2 indent_size = 2
insert_final_newline = false insert_final_newline = false
trim_trailing_whitespace = false trim_trailing_whitespace = false
[*.yml] [*.yml]
# YML files follow the same conventions as YAML files, using an indent size of 2 spaces.
indent_size = 2 indent_size = 2
insert_final_newline = false insert_final_newline = false
trim_trailing_whitespace = false trim_trailing_whitespace = false
[*.json] [*.json]
# JSON files use an indent size of 2 spaces, which is the standard for JSON formatting.
indent_size = 2 indent_size = 2
[*.jsonc] [*.jsonc]
# JSONC (JSON with comments) files also follow the standard JSON formatting with an indent size of 2 spaces.
indent_size = 2 indent_size = 2