.editorconfig
author Taapas Agrawal <taapas2897@gmail.com>
Tue, 16 Jul 2019 01:59:28 +0530
changeset 42613 35ebdbb38efb
parent 38293 1d6066336d7b
child 45411 c25efc468a49
permissions -rw-r--r--
continue: added support for rebase This adds support of rebase to hg continue plan. An independent continue logic for rebase is created under continuerebase() function. For this a seperate rebaseruntime object is created under the function to handle an interrupted rebasestate. Results of tests are shown. Differential Revision: https://phab.mercurial-scm.org/D6646

# 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