# HG changeset patch
# User Gregory Szorc <gregory.szorc@gmail.com>
# Date 1528413558 25200
#      Thu Jun 07 16:19:18 2018 -0700
# Node ID 1d6066336d7bfcc7e070357dd30b75271933e419
# Parent  2ec44160165d6c28a70b0df44d107e8b6b477889
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

diff --git a/.editorconfig b/.editorconfig
--- a/.editorconfig
+++ b/.editorconfig
@@ -11,3 +11,8 @@
 indent_size = 8
 indent_style = tab
 trim_trailing_whitespace = true
+
+[*.t]
+indent_size = 2
+indent_style = space
+trim_trailing_whitespace = false