1# http://editorconfig.org 2# Consistent coding style across different editors. 3 4# Top-most file 5root = true 6 7# Global styles: 8# - indent 2 spaces 9# - add final new line 10# - trim trailing whitespace 11[*] 12charset = utf-8 13end_of_line = lf 14indent_size = 2 15indent_style = space 16insert_final_newline = true 17trim_trailing_whitespace = true 18 19# BUILD: 20# - indent 4 spaces 21[BUILD] 22indent_size = 4 23 24# Makefile: 25# - indent 1 tab 26[Makefile] 27indent_size = tab 28indent_style = tab 29 30# Markdown: 31# - indent 4 spaces 32# - trailing whitespace is significant 33[*.md] 34indent_size = 4 35trim_trailing_whitespace = false 36 37# Python 38# - indent 4 spaces 39[*.py] 40indent_size = 4 41