.editorconfig
author Pulkit Goyal <pulkit@yandex-team.ru>
Wed, 24 Apr 2019 19:28:46 +0300
branchstable
changeset 42155 818051048c2e
parent 38293 1d6066336d7b
child 45411 c25efc468a49
permissions -rw-r--r--
tests: show IMM is broken when merging file empty in destination When we are doing in-memory merging, and we are merging a file which is empty in merge destination, it leads to error 'abort: xxx not found in manifest'. Next patch will fix this error. Differential Revision: https://phab.mercurial-scm.org/D6307

# 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