.editorconfig
author Pierre-Yves David <pierre-yves.david@octobus.net>
Fri, 08 Mar 2024 10:51:01 +0100
changeset 51476 715be2690d28
parent 45392 c25efc468a49
permissions -rw-r--r--
stream-clone-test: simplify the --uncompressed alias check To check that --uncompressed is an alias we just need to check it trigger a stream clone, we don't need to check anything else.

# 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