dataarchiteces/private/kirby/.editorconfig

32 lines
526 B
INI
Raw Permalink Normal View History

2026-02-09 08:36:12 +01:00
# This file is for unifying the coding style for different editors and IDEs
# editorconfig.org
2026-02-09 17:05:41 +01:00
# PHP PSR-12 Coding Standards
# https://www.php-fig.org/psr/psr-12/
2026-02-09 08:36:12 +01:00
root = true
2026-02-09 17:05:41 +01:00
[*]
2026-02-09 08:36:12 +01:00
charset = utf-8
end_of_line = lf
2026-02-09 17:05:41 +01:00
indent_style = tab
indent_size = 2
2026-02-09 08:36:12 +01:00
trim_trailing_whitespace = true
2026-02-09 17:05:41 +01:00
[*.php]
indent_size = 4
insert_final_newline = true
[*.vue.php]
indent_size = 2
insert_final_newline = false
[views/**/*.php]
indent_size = 2
insert_final_newline = false
[*.yml]
2026-02-09 08:36:12 +01:00
indent_style = space
2026-02-09 17:05:41 +01:00
[*.md]
trim_trailing_whitespace = false