1; This file is for unifying the coding style for different editors and IDEs. 2; More information at http://editorconfig.org 3 4root = true 5 6[*] 7charset = utf-8 8end_of_line = lf 9insert_final_newline = true 10indent_style = space 11indent_size = 4 12trim_trailing_whitespace = true 13 14[*.md] 15trim_trailing_whitespace = false 16 17[*.yml] 18indent_size = 2 19