1
0
mirror of https://github.com/hestiacp/hestiacp.git synced 2025-02-06 09:26:41 +00:00
hestiacp/.editorconfig
2022-12-17 22:32:15 +00:00

27 lines
616 B
INI
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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 lets 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