.editorconfig
author Martin von Zweigbergk <martinvonz@google.com>
Tue, 05 Nov 2019 15:00:44 -0800
changeset 43454 c8e5b3094a1d
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
repoview: avoid wrapping changelog if there's nothing to filter This simplifies the code a bit by moving the optimizaton for no filtered revisions to one place. I assume it also makes working with repos without obsmarkers a little faster, but it doesn't seem significant. Differential Revision: https://phab.mercurial-scm.org/D7248

# 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