This repository has been archived on 2024-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
quintolin/.editorconfig

57 lines
882 B
INI
Raw Normal View History

2023-06-16 21:27:53 +02:00
root = true
[*]
charset = utf-8
end_of_line = LF
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space
indent_size = 2
max_line_length = 80
[*.css]
max_line_length = 120
2024-02-01 23:43:02 +01:00
[*.csv]
indent_style = unset
indent_size = unset
max_line_length = unset
[{*.html,*.html.twig}]
max_line_length = 120
2024-01-02 00:16:20 +01:00
[{*.json,composer.lock,symfony.lock}]
max_line_length = off
2023-06-16 21:27:53 +02:00
[*.php]
# settings required by PSR-12 standard
indent_size = 4
max_line_length = 120
[.gitmodules]
indent_style = tab
indent_size = 4
max_line_length = unset
2024-02-01 23:43:28 +01:00
[LICENSE*]
indent_style = unset
indent_size = unset
max_line_length = unset
[Makefile]
max_line_length = unset
indent_style = tab
2024-02-01 23:44:29 +01:00
[/website/.env*]
indent_style = unset
indent_size = unset
max_line_length = unset
[/website/bin/console]
indent_size = 4
max_line_length = 120
[/website/config/**.yaml]
indent_size = 4
max_line_length = off