.editorconfig
author Pierre-Yves David <pierre-yves.david@octobus.net>
Wed, 27 Feb 2019 12:40:18 +0100
changeset 41819 688fc33e105d
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
storage: introduce a `revlog.reuse-external-delta` config This option goes a bit further and provides a way to get the same behavior as the `re-delta-all` optimisation from `hg debugupgraderepo`. The effect of the option is a bit hard to test as we do not have multiple diff algorithm at hand. However, we at least make sure the code path run.

# 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