.editorconfig
author Martin von Zweigbergk <martinvonz@google.com>
Fri, 08 Feb 2019 13:33:40 -0800
changeset 41665 0ed7a8ac5711
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
scmutil: respect ui.relative-paths in default match.badfn We should probably be passing in a uipathfn here instead, so the caller can get consistent output (between match.badfn and whatever else it prints). I think we should ideally remove the badfn from the matcher completely, but that's a different story. This patch is at least not making it worse. Differential Revision: https://phab.mercurial-scm.org/D5916

# 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