mirror of
https://github.com/hestiacp/hestiacp.git
synced 2025-02-06 09:26:41 +00:00
27 lines
616 B
INI
27 lines
616 B
INI
# editorconfig.org
|
||
root = true
|
||
|
||
[*]
|
||
charset = utf-8
|
||
indent_style = tab
|
||
end_of_line = lf
|
||
insert_final_newline = true
|
||
trim_trailing_whitespace = true
|
||
max_line_length = 100
|
||
|
||
# Markdown syntax specifies that trailing whitespaces can be meaningful,
|
||
# so let’s not trim those. e.g. 2 trailing spaces = linebreak (<br />)
|
||
# See https://daringfireball.net/projects/markdown/syntax#p
|
||
[*.md]
|
||
trim_trailing_whitespace = false
|
||
|
||
# YAML forbids using tabs
|
||
# See https://yaml.org/faq.html
|
||
[*.{yml,yaml}]
|
||
indent_size = 2
|
||
indent_style = space
|
||
|
||
# Views have longer line length for now
|
||
[web/templates/**/*.php]
|
||
max_line_length = 200
|