onasty/.editorconfig (view raw)
Olexandr Smirnov
Olexandr Smirnov
ss2316544@gmail.com chore: add editorconfig, and .tool-versions (#159)..., 11 months ago
ss2316544@gmail.com chore: add editorconfig, and .tool-versions (#159)..., 11 months ago
| 1 | root = true |
| 2 | |
| 3 | [*] |
| 4 | indent_style = space |
| 5 | indent_size = 4 |
| 6 | end_of_line = lf |
| 7 | insert_final_newline = true |
| 8 | trim_trailing_whitespace = true |
| 9 | charset = utf-8 |
| 10 | |
| 11 | [*.go] |
| 12 | indent_style = tab |
| 13 | indent_size = 4 |
| 14 | trim_trailing_whitespace = true |
| 15 | |
| 16 | [web/**/*.elm] |
| 17 | indent_style = space |
| 18 | indent_size = 4 |
| 19 | trim_trailing_whitespace = true |
| 20 | |
| 21 | [*.{md,yml,yaml}] |
| 22 | indent_size = 2 |
| 23 | trim_trailing_whitespace = false |