.editorconfig
author Pierre-Yves David <pierre-yves.david@octobus.net>
Thu, 08 Dec 2022 15:57:42 +0100
changeset 50924 9bffc6c4e4c5
parent 45392 c25efc468a49
permissions -rw-r--r--
pycompat: deprecate using bytes Python2 has been dropped for a while, so lets comply to the signature of the global function. This open the way to drop the use of `pycompat.getattr` and company, and, especially, the associated `util.safehasattr`.

# 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