# Defines the coding style for different editors and IDEs.
# http://editorconfig.org

# top-most EditorConfig file
root = true

# Rules for source code.
[*]
charset = utf-8
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space
indent_size = 2
max_line_length = 80

# Documentation.
[*.md]
max_line_length = 0
trim_trailing_whitespace = false

# Git commit messages.
[COMMIT_EDITMSG]
max_line_length = 0
trim_trailing_whitespace = false

# Makefiles require tabs.
[Makefile]
indent_style = tab
indent_size = 8
