.editorconfig
author Sushil khanchi <sushilkhanchi97@gmail.com>
Wed, 27 Jun 2018 12:24:21 +0530
changeset 38485 56b2074114b1
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
rebase: refactor dryrun implementation This patch refactor dry-run code to make it easy to add additional functionality in dryrun. Otherwise we had to add every functionality through _origrebase() which does not seem a good implementation. Differential Revision: https://phab.mercurial-scm.org/D3849

# 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