.editorconfig
author Pierre-Yves David <pierre-yves.david@octobus.net>
Thu, 28 Jul 2022 16:25:21 +0200
changeset 49438 44d4fd09982f
parent 45392 c25efc468a49
permissions -rw-r--r--
perf: introduce a benchmark for delta-find That part is responsible of serious slowdown in some `hg pull/unbundle` case. So lets add a way to benchmark it.

# 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