.editorconfig
author Gregory Szorc <gregory.szorc@gmail.com>
Thu, 26 Aug 2021 17:47:50 -0700
branchstable
changeset 48747 ae28d37f5969
parent 45392 c25efc468a49
permissions -rw-r--r--
automation: use m6i instances This instance type is much, much faster than t3 and can perform tasks much quicker. Differential Revision: https://phab.mercurial-scm.org/D12131

# See http://EditorConfig.org for the specification

root = true

[*.py]
indent_size = 4
indent_style = space
trim_trailing_whitespace = true
end_of_line = lf

[*.{c,h}]
indent_size = 8
indent_style = tab
trim_trailing_whitespace = true
end_of_line = lf

[*.t]
indent_size = 2
indent_style = space
trim_trailing_whitespace = false
end_of_line = lf