.editorconfig (572B)
1 # top-most EditorConfig file 2 root=true 3 4 # Apply Windows-style newlines with a newline ending on every file, using UTF-8, and removing extra whitespace before newlines 5 [*] 6 end_of_line = crlf 7 insert_final_newline = true 8 charset = utf-8 9 trim_trailing_whitespace = true 10 11 # Overrides for Yaml Files - Use two spaces for indents 12 # editorconfig/editorconfig#329 13 [*.{yml,yaml}] 14 indent_style = space 15 indent_size = 2 16 17 # Overrides for Markdown Files - Use tab for indents (accessibility) 18 [*.md] 19 indent_style = tab 20 21 [{allow.txt,excludes.txt,patterns.txt,expect.txt}] 22 end_of_line = lf