# This file is for unifying the coding style for different editors and IDEs # editorconfig.org root = true [vendor/**] ; use default in this files indent_style = indent_size = trim_trailing_whitespace = false insert_final_newline = false [node_modules/**] ; use default in this files indent_style = indent_size = trim_trailing_whitespace = false insert_final_newline = false [*.{js,coffee,html,yml,vue}] end_of_line = lf indent_style = space indent_size = 2 charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true [*.{json}] end_of_line = lf indent_style = space indent_size = 4 charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true [Makefile] indent_style = tab