| 1234567891011121314151617181920 |
- # editorconfig.org
- root = true
- [*]
- charset = utf-8
- # Leave line endings to Git: `core.autocrlf`
- # & `.gitattributes` text=auto normalization
- # end_of_line = lf
- indent_size = 2
- indent_style = space
- insert_final_newline = true
- trim_trailing_whitespace = true
- # Preserve trailing space in Markdown
- # > When you do want to insert a <br /> break tag using Markdown,
- # > you end a line with two or more spaces, then type return.
- [*.md, *.mdown, *.markdown]
- trim_trailing_whitespace = false
|