.editorconfig
author Joerg Sonnenberger <joerg@bec.de>
Tue, 12 May 2020 22:20:56 +0200
branchstable
changeset 44821 edffab2cf0ea
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
fastexport: adjust output to be more canonical For time zones, git doesn't consider +0 and -0 the same timezone, so use the former canonically. Add a test case to ensure that non-UTC offsets are handled correctly. The real name part of the committer name is normally not quoted, so don't enforce that. Differential Revision: https://phab.mercurial-scm.org/D8522

# 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