.editorconfig
author Axel Hecht <axel@pike.org>
Wed, 01 Jul 2020 15:43:15 +0200
branchstable
changeset 45031 383005aa9cdc
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
run-tests: find python binary on Python 3 (issue6361) Return strings from _findprogram as all callers expect unicode strings. Previously the check in _usecorrectpython agains sysexecutable was always false on Python 3. Differential Revision: https://phab.mercurial-scm.org/D8674

# 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