.editorconfig
author Matt Harbison <matt_harbison@yahoo.com>
Sat, 10 Aug 2024 14:22:26 -0400
changeset 51843 62806be5cbda
parent 45411 c25efc468a49
permissions -rw-r--r--
typing: add hints to `mercurial.util.mktempcopy()` Might as well, now that the previous commit indicated what types are required.

# 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