.editorconfig
author Yuya Nishihara <yuya@tcha.org>
Wed, 19 Dec 2018 21:51:08 +0900
changeset 41132 55dc1da8df2f
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
rust-ancestors: duplicate loop that visits parents of revs/bases As the inline comment says, it can't be cleanly implemented in Rust. It's better to duplicate the code instead of inserting "if"s. The loop will be cleaned up by future commits.

# 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