.editorconfig
author Georges Racinet <georges.racinet@octobus.net>
Wed, 12 Jun 2019 14:31:41 +0100
changeset 42736 b6f3f704a561
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
rust-discovery: read the index from a repo passed at init This makes the API of the Rust PartialDiscovery object now the same (or rather a subset) of the Python object, hence easier to control through module policy down the road. Differential Revision: https://phab.mercurial-scm.org/D6517

# 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