.editorconfig
author Martin von Zweigbergk <martinvonz@google.com>
Thu, 18 Apr 2019 00:34:45 -0700
changeset 42283 00e065fb1469
parent 38293 1d6066336d7b
child 45411 c25efc468a49
permissions -rw-r--r--
copies: remove redundant filtering of ping-pong renames in _chain() We already handle the ping-pong rename case in the filtering step, so there's very little point in doing it in the chaining loop (ping-pong renames are very rare, so I'm not worried about the cost of adding it and then removing it again). Differential Revision: https://phab.mercurial-scm.org/D6344

# 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