.editorconfig
author Martin von Zweigbergk <martinvonz@google.com>
Thu, 06 Aug 2020 10:53:00 -0700
changeset 45343 c3376a724e32
parent 38293 1d6066336d7b
child 45411 c25efc468a49
permissions -rw-r--r--
templater: teach template loader to use open_template() function The template loader can apparently load templates from relative paths, so I needed to add that support to `open_template()`. This takes the number of failing tests with PyOxidizer from 54 to 34. Differential Revision: https://phab.mercurial-scm.org/D8907

# 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