docker-postfix/.editorconfig

25 lines
511 B
INI
Raw Normal View History

# http://editorconfig.org
root = true
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
end_of_line = lf
max_line_length = 120
# Indent shell scripts with tabs
[**.sh,**.bats]
indent_style = tab
# Indent YAML files with spaces
[**.yaml,**.yml]
indent_style = space
# The JSON files contain newlines inconsistently
[*.json]
insert_final_newline = ignore
# Minified JavaScript files shouldn't be changed
[**.min.js]
indent_style = ignore
insert_final_newline = ignore