.editorconfig
author Martin von Zweigbergk <martinvonz@google.com>
Thu, 12 Jul 2018 09:25:02 -0700
changeset 38669 b5891bf8ab13
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
copies: delete now-unnecessary check for "a == b" before "a.descendant(b)" Unnecessary since 879cbdde63df (revlog: do inclusive descendant testing (API), 2018-06-21). Differential Revision: https://phab.mercurial-scm.org/D3935

# 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