.editorconfig
author Martin von Zweigbergk <martinvonz@google.com>
Tue, 25 Sep 2018 08:53:20 -0700
changeset 39844 9e8fcd2e78c1
parent 38293 1d6066336d7b
child 45411 c25efc468a49
permissions -rw-r--r--
encoding: remove unnecessary lambdas from _encodingfixers They have been unnecessary since 1a3a08b5d4d5 (encoding: remove workaround for locale.getpreferredencoding(), 2017-05-13). Also rename the variable since "fixer" sounds like a function. Differential Revision: https://phab.mercurial-scm.org/D4743

# 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