.editorconfig
author Pierre-Yves David <pierre-yves.david@octobus.net>
Fri, 01 Dec 2023 22:44:33 +0100
changeset 51268 622f00b350be
parent 45392 c25efc468a49
permissions -rw-r--r--
censor: add a command flag to skip the head checks In some case we spend hours of time checking the heads to censors a simple file is not a good behavior. Especially when censors is used to removed corrupted content.

# 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