.editorconfig
author Gregory Szorc <gregory.szorc@gmail.com>
Wed, 03 Oct 2018 13:54:31 -0700
changeset 40035 7a347d362a45
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
exchangev2: add progress bar around manifest scanning This can take a long time on large repositories. Let's add a progress bar so we don't have long periods where it isn't obvious what is going on. Differential Revision: https://phab.mercurial-scm.org/D4859

# 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