Davide Pesavento | 0ecbec0 | 2024-02-15 20:00:07 -0500 | [diff] [blame^] | 1 | root = true |
| 2 | |
| 3 | [*] |
| 4 | charset = utf-8 |
| 5 | end_of_line = lf |
| 6 | insert_final_newline = true |
| 7 | |
| 8 | [*.{cpp,hpp}] |
| 9 | indent_style = space |
| 10 | indent_size = 2 |
| 11 | trim_trailing_whitespace = true |
| 12 | |
| 13 | [{*.{py,sh},.jenkins,wscript}] |
| 14 | indent_style = space |
| 15 | indent_size = 4 |
| 16 | trim_trailing_whitespace = true |
| 17 | |
| 18 | [*.md] |
| 19 | indent_style = space |
| 20 | trim_trailing_whitespace = false |
| 21 | |
| 22 | [*.rst] |
| 23 | indent_style = space |
| 24 | trim_trailing_whitespace = true |
| 25 | |
| 26 | [*.{yaml,yml}] |
| 27 | indent_style = space |
| 28 | indent_size = 2 |