# This file is for unifying the coding style for different editors and IDEs # editorconfig.org root = true [*] charset = utf-8 indent_size = 4 end_of_line = lf indent_style = space trim_trailing_whitespace = true [**.{cs}] insert_final_newline = true indent_size = 4 end_of_line = lf [**.**.{cs}] insert_final_newline = true indent_size = 4 end_of_line = lf [**.{js,json,md,ts}] insert_final_newline = true indent_size = 2 end_of_line = lf [**.**.{js,json,md,ts}] insert_final_newline = true indent_size = 2 end_of_line = lf [**.html] insert_final_newline = false