.editorconfig
author Augie Fackler <augie@google.com>
Wed, 06 Nov 2019 17:46:26 -0500
changeset 43474 70d42e2ad9b4
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
pytype: don't warn us about ignored-on-py3 metaclasses We can remove this when we're Python 3-only, but for now it's just too awkward to deal with and it's harmless. Differential Revision: https://phab.mercurial-scm.org/D7272

# 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