julienmonnerie/kirby/.editorconfig

28 lines
463 B
INI
Raw Normal View History

2022-06-17 17:51:59 +02:00
# This file is for unifying the coding style for different editors and IDEs
# editorconfig.org
# PHP PSR-12 Coding Standards
# https://www.php-fig.org/psr/psr-12/
root = true
2022-08-31 15:02:43 +02:00
[*]
2022-06-17 17:51:59 +02:00
charset = utf-8
end_of_line = lf
2022-08-31 15:02:43 +02:00
indent_style = tab
indent_size = 2
2022-06-17 17:51:59 +02:00
trim_trailing_whitespace = true
2022-08-31 15:02:43 +02:00
[*.php]
indent_size = 4
insert_final_newline = true
2025-04-21 18:57:21 +02:00
[*.vue.php]
indent_size = 2
insert_final_newline = false
2022-08-31 15:02:43 +02:00
[*.yml]
2022-06-17 17:51:59 +02:00
indent_style = space
2022-08-31 15:02:43 +02:00
[*.md]
trim_trailing_whitespace = false