| # EditorConfig: https://editorconfig.org |
| # Top-most EditorConfig file. |
| root = true |
| |
| # Unix-style newlines with a newline ending every file. |
| [*] |
| end_of_line = lf |
| insert_final_newline = true |
| |
| # Match multiple files with brace expansion notation. |
| [*.{js,json,less,ts,vue,yml}] |
| charset = utf-8 |
| indent_style = tab |
| indent_size = 4 |
| max_line_length = 100 |
| trim_trailing_whitespace = true |
| |
| [*.md] |
| charset = utf-8 |
| max_line_length = 100 |
| trim_trailing_whitespace = false |
| |
| [*.svg] |
| charset = utf-8 |
| indent_style = tab |
| indent_size = 4 |
| trim_trailing_whitespace = true |