.editorconfig
author Danny Hooper <hooper@google.com>
Mon, 09 Jul 2018 15:33:49 -0700
changeset 38645 02850baddadd
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
tests: prevent conflict markers in test case from triggering warnings Broadly, having lines that begin with several '<' tends to trigger tools that try to warn you about unresolved conflicts. It will save some headaches to tweak this string literal to avoid that. Differential Revision: https://phab.mercurial-scm.org/D3897

# 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