1# EditorConfig configuration 2# https://editorconfig.org 3 4root = true 5 6[*] 7charset = utf-8 8end_of_line = lf 9indent_size = 4 10indent_style = space 11insert_final_newline = true 12trim_trailing_whitespace = true 13 14[*.{json,md,yml}] 15indent_size = 2 16 17[*.yml] 18quote_type = single 19 20[*.sh] 21binary_next_line = true 22switch_case_indent = true 23