Skip to main content

.editorconfig

Created on Thu Mar 08 2018Last updated on Tue Jan 18 2022
root = true

[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
max_line_length = 100
tab_width = 2
trim_trailing_whitespace = true

[*.md]
max_line_length = off
trim_trailing_whitespace = false

[*.{yml,yaml}]
max_line_length = off

[COMMIT_EDITMSG]
max_line_length = off

# Php accepted standard (PSR-2, Symfony)
[{*.{php,phtml},php_cs.dist,console,phpunit}]
indent_size = 4

# Python accepted standard (PEP8)
[*.py]
indent_size = 4