.editorconfig
author Gregory Szorc <gregory.szorc@gmail.com>
Tue, 22 Oct 2019 18:34:03 -0700
changeset 43518 7c9f63a5cb14
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
packaging: always pass VERSION into Inno invocation The code in the Inno file was a holdover from before we had Python driving execution. With Python in the driver's seat, we can now have it resolve the version string and pass it into Inno, making the code easier to understand for people who aren't packaging gurus. Differential Revision: https://phab.mercurial-scm.org/D7161

# 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