1# https://editorconfig.org 2 3root = true 4 5[*] 6charset = utf-8 7end_of_line = unset 8indent_style = unset 9insert_final_newline = true 10max_doc_length = 80 11max_line_length = 100 12trim_trailing_whitespace = true 13 14[*.rc] 15end_of_line = crlf 16trim_trailing_whitespace = unset 17 18[*.ds[pw]] 19end_of_line = crlf 20max_doc_length = unset 21max_line_length = unset 22trim_trailing_whitespace = unset 23