# http://editorconfig.org
root = true

# Applies to all files
[*]
charset = utf-8 # File charset
end_of_line = lf # Line ending type: lf | cr | crlf
indent_style = tab # Indentation style: tab | space
insert_final_newline = true # Always insert a final newline

# Applies only to md files
[*.md]
max_line_length = off # Disable max line length limit
trim_trailing_whitespace = false # Disable trailing whitespace trimming
