.editorconfig
author Boris Feld <boris.feld@octobus.net>
Sat, 28 Apr 2018 12:51:44 +0200
changeset 38616 c44ae5997869
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
run-tests: add support for external test result The goal is to begin experiment with custom test result. I'm not sure we should offers any backward-compatibility guarantee on that plugin API as it doesn't change often and shouldn't have too much clients. Differential Revision: https://phab.mercurial-scm.org/D3700

# See http://EditorConfig.org for the specification

root = true

[*.py]
indent_size = 4
indent_style = space
trim_trailing_whitespace = true

[*.{c,h}]
indent_size = 8
indent_style = tab
trim_trailing_whitespace = true

[*.t]
indent_size = 2
indent_style = space
trim_trailing_whitespace = false