.editorconfig
author Pierre-Yves David <pierre-yves.david@octobus.net>
Tue, 24 Sep 2024 00:01:30 +0200
changeset 51902 1eb2317c1762
parent 45392 c25efc468a49
permissions -rw-r--r--
rev-branch-cache: issue more truthful "truncating" message First, don't pretend it truncate to 40 when it actually truncate to 0. Second, don't pretend to truncate to 0 when the file is already empty/missing.

# 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