.editorconfig
author Martin von Zweigbergk <martinvonz@google.com>
Tue, 25 May 2021 16:46:32 -0700
changeset 47345 710435a5c469
parent 45392 c25efc468a49
permissions -rw-r--r--
docket: make compatible with py3.6, where Struct.format is bytes Differential Revision: https://phab.mercurial-scm.org/D10770

# 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