.editorconfig
author Georges Racinet <gracinet@anybox.fr>
Fri, 30 Nov 2018 00:44:04 +0100
changeset 40933 18513d6ef7d4
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
rust: changed Graph.parents to return [Revision; 2] This will allow for simple iteration on parent revisions, such as: for parent in graph.parents(rev)?.iter().cloned() This seems to be a zero overhead abstraction once built in release mode. Differential Revision: https://phab.mercurial-scm.org/D5415

# 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