.editorconfig
author Georges Racinet <georges.racinet@octobus.net>
Wed, 20 Feb 2019 11:49:06 +0100
changeset 41763 6843379bf99e
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
changelog: prefilter in headrevs() In case where headrevs() is called on some revisions, we perform the check that aren't filtered in advance, and switch revlog to use its unchecked form. This allows to work with alternative implementations that don't have knowledge of the filtering system, such as the Rust one.

# 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