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[*] 7indent_style = space 8indent_size = 2 9end_of_line = lf 10insert_final_newline = true 11trim_trailing_whitespace = true 12 13[*.bat] 14end_of_line = crlf 15 16[*.yml] 17indent_style = space 18indent_size = 2 19 20[*.twig] 21insert_final_newline = false 22 23[Makefile] 24indent_style = tab 25