.editorconfig
author Joerg Sonnenberger <joerg@bec.de>
Wed, 26 Feb 2020 22:26:28 +0100
changeset 44405 a1908951ca42
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
tests: handle In-Reply-To headers for line wrapping Python 3 tends to insert a newline for both Message-ID and In-Reply-To headers, so unwrap both. Just check the wrapped line format explicitly without regular expression. Differential Revision: https://phab.mercurial-scm.org/D8171

# 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