Mercurial > hg
comparison .editorconfig @ 38281:1d6066336d7b
mercurial: add .t files to .editorconfig
The notable entry here prevents the stripping of trailing whitespace,
which is important in .t tests.
Differential Revision: https://phab.mercurial-scm.org/D3702
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Thu, 07 Jun 2018 16:19:18 -0700 |
parents | d30fdd6d1bf7 |
children | c25efc468a49 |
comparison
equal
deleted
inserted
replaced
38280:2ec44160165d | 38281:1d6066336d7b |
---|---|
9 | 9 |
10 [*.{c,h}] | 10 [*.{c,h}] |
11 indent_size = 8 | 11 indent_size = 8 |
12 indent_style = tab | 12 indent_style = tab |
13 trim_trailing_whitespace = true | 13 trim_trailing_whitespace = true |
14 | |
15 [*.t] | |
16 indent_size = 2 | |
17 indent_style = space | |
18 trim_trailing_whitespace = false |