Jose Fonseca | 38934e4 | 2015-10-31 22:58:20 +0000 | [diff] [blame] | 1 | # http://editorconfig.org |
| 2 | |
| 3 | root = true |
| 4 | |
Jose Fonseca | 6c3f943 | 2017-09-12 16:33:33 +0100 | [diff] [blame] | 5 | [*] |
| 6 | tab_width = 8 |
Jose Fonseca | 6635dbb | 2016-02-17 15:37:56 +0000 | [diff] [blame] | 7 | |
Jose Fonseca | 6c3f943 | 2017-09-12 16:33:33 +0100 | [diff] [blame] | 8 | [*.{c,h,cpp,hpp,cc,hh,inl,m,mm,rc}] |
Jose Fonseca | 6635dbb | 2016-02-17 15:37:56 +0000 | [diff] [blame] | 9 | indent_style = space |
| 10 | indent_size = 4 |
| 11 | |
| 12 | [{CMakeLists.txt,*.cmake}] |
Jose Fonseca | 38934e4 | 2015-10-31 22:58:20 +0000 | [diff] [blame] | 13 | indent_style = space |
| 14 | indent_size = 4 |
| 15 | |
| 16 | [*.{markdown,md}] |
Jose Fonseca | c3bbc97 | 2017-06-28 22:07:55 +0100 | [diff] [blame] | 17 | indent_style = space |
Jose Fonseca | 38934e4 | 2015-10-31 22:58:20 +0000 | [diff] [blame] | 18 | trim_trailing_whitespace = false |
| 19 | |
Jose Fonseca | 6c3f943 | 2017-09-12 16:33:33 +0100 | [diff] [blame] | 20 | [*.py] |
| 21 | indent_style = space |
| 22 | indent_size = 4 |
| 23 | |
| 24 | [*.sh] |
| 25 | indent_style = space |
| 26 | indent_size = 4 |
| 27 | |
Jose Fonseca | 38934e4 | 2015-10-31 22:58:20 +0000 | [diff] [blame] | 28 | [*.yml] |
| 29 | indent_style = space |
| 30 | indent_size = 2 |
| 31 | |
Jose Fonseca | bab1921 | 2016-01-31 23:58:30 +0000 | [diff] [blame] | 32 | [{Makefile,*.mk,*.def}] |
Jose Fonseca | 38934e4 | 2015-10-31 22:58:20 +0000 | [diff] [blame] | 33 | indent_style = tab |
Jose Fonseca | 2590a79 | 2016-02-09 14:10:26 +0000 | [diff] [blame] | 34 | indent_size = 8 |