| 123456789101112131415161718192021222324252627 |
- # EditorConfig helps developers define and maintain consistent
- # coding styles between different editors and IDEs
- # https://editorconfig.org
- root = true
- [*]
- charset = utf-8
- end_of_line = lf
- insert_final_newline = true
- trim_trailing_whitespace = true
- [*.{coffee,js,json}]
- indent_style = space
- indent_size = 4
- [*.{pug,jade}]
- indent_style = space
- indent_size = 4
- [*.{styl,css}]
- indent_style = space
- indent_size = 4
- [*.{html,md}]
- indent_style = space
- indent_size = 4
|