.editorconfig
author Pierre-Yves David <pierre-yves.david@octobus.net>
Wed, 21 Feb 2024 13:01:25 +0100
changeset 51416 0c04074f5414
parent 45392 c25efc468a49
permissions -rw-r--r--
phases: drop set building in `hasnonpublicphases` We don't actually use the set, so why do we ensure they are built? (we should also clean up the use of repository argument but that's a quest for later).

# 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