.editorconfig
author Pulkit Goyal <pulkit@yandex-team.ru>
Wed, 24 Oct 2018 17:51:49 +0300
changeset 40515 1c34b31a6c9c
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
remotefilelogserver: add a matcher argument to _walkstreamfiles() Implementing narrow stream clones in core, I added an optional matcher argument. The function in remotefilelogserver.py does not know about that argument and does not accept that and hence some tests fails. Differential Revision: https://phab.mercurial-scm.org/D5191

# 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