.editorconfig
author Gregory Szorc <gregory.szorc@gmail.com>
Fri, 12 Oct 2018 18:37:42 +0200
changeset 40196 2864f8d3fcd6
parent 38293 1d6066336d7b
child 45411 c25efc468a49
permissions -rw-r--r--
py3: use raw strings for stack names These are used for simple compares. We don't need to normalize to bytes. As part of this, I expanded a set literal so entries are 1 per line. Differential Revision: https://phab.mercurial-scm.org/D5013

# 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