.editorconfig
author Ian Moody <moz-ian@perix.co.uk>
Wed, 23 Oct 2019 23:00:58 +0100
branchstable
changeset 43321 a2ff3aff81d2
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
py3: use %d instead of %s when formatting an int into a bytestring The latter wasn't noticed before since no tests exercise --confirm at all, let alone on an existing DREV. The former is only hit during an intermittent network issue during amending at the end of a phabsend, so doesn't seem testable. Differential Revision: https://phab.mercurial-scm.org/D7153

# 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