.editorconfig
author Matt Harbison <matt_harbison@yahoo.com>
Thu, 13 Sep 2018 00:42:25 -0400
changeset 39611 f3900f4c63d4
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
py3: prevent the win32 ctype _fields_ from being transformed to bytes Otherwise, any hg invocation dies with TypeError: '_fields_' must be a sequence of (name, C type) pairs # skip-blame just a r prefix

# 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