2021-01-04 20:05:15 +01:00
|
|
|
# EditorConfig helps developers define and maintain consistent
|
|
|
|
# coding styles between different editors and IDEs
|
|
|
|
# editorconfig.org
|
|
|
|
|
|
|
|
root = true
|
|
|
|
|
|
|
|
[*]
|
|
|
|
# Change these settings to your own preference
|
|
|
|
indent_style = space
|
|
|
|
indent_size = 4
|
|
|
|
|
|
|
|
# We recommend you to keep these unchanged
|
|
|
|
end_of_line = lf
|
|
|
|
charset = utf-8
|
|
|
|
trim_trailing_whitespace = true
|
|
|
|
insert_final_newline = true
|
|
|
|
|
2022-08-05 14:37:06 +02:00
|
|
|
[*.{js,html,ts,tsx}]
|
2021-01-04 20:05:15 +01:00
|
|
|
indent_size = 2
|
|
|
|
|
|
|
|
[*.json]
|
|
|
|
indent_size = 2
|
|
|
|
|
|
|
|
[*.md]
|
|
|
|
trim_trailing_whitespace = false
|
|
|
|
|
|
|
|
[*.sh]
|
|
|
|
indent_style = tab
|
|
|
|
|
2024-11-12 11:24:32 +01:00
|
|
|
[*.xml.dist]
|
2021-01-04 20:05:15 +01:00
|
|
|
indent_style = space
|
|
|
|
indent_size = 4
|
|
|
|
|
|
|
|
[*.{yaml,yml}]
|
|
|
|
trim_trailing_whitespace = false
|
|
|
|
|
|
|
|
[.github/workflows/*.yml]
|
|
|
|
indent_size = 2
|
|
|
|
|
|
|
|
[.gitmodules]
|
|
|
|
indent_style = tab
|
|
|
|
|
2024-11-12 11:24:32 +01:00
|
|
|
[.php_cs.dist]
|
2021-01-04 20:05:15 +01:00
|
|
|
indent_style = space
|
|
|
|
indent_size = 4
|
|
|
|
|
|
|
|
[composer.json]
|
|
|
|
indent_size = 4
|
|
|
|
|
2024-11-12 11:24:32 +01:00
|
|
|
[{compose,docker-compose}.*.{yaml,yml}]
|
2021-01-04 20:05:15 +01:00
|
|
|
indent_size = 2
|
|
|
|
|
2024-11-12 11:24:32 +01:00
|
|
|
[*.*Dockerfile]
|
2023-10-26 14:49:28 +02:00
|
|
|
indent_style = tab
|
|
|
|
|
2024-11-12 11:24:32 +01:00
|
|
|
[*.*Caddyfile]
|
2021-01-04 20:05:15 +01:00
|
|
|
indent_style = tab
|