.editorconfig
author Matt Harbison <matt_harbison@yahoo.com>
Mon, 16 Mar 2020 14:33:35 -0400
changeset 44651 99fa161a883c
parent 38293 1d6066336d7b
child 45411 c25efc468a49
permissions -rw-r--r--
phabricator: extract the logic to amend diff properties to a function This will be needed on a separate code path when dealing with folding revisions. And since we know that will involve adding multiple local commmits to the diff properties instead of just one, restructure the logic slightly to allow it. Differential Revision: https://phab.mercurial-scm.org/D8312

# 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