.editorconfig
author Raphaël Gomès <rgomes@octobus.net>
Tue, 27 Jun 2023 17:34:51 +0200
changeset 51190 6ec8387eb0be
parent 45392 c25efc468a49
permissions -rw-r--r--
rust-index: pass data down to the Rust index This will allow us to start keeping the Rust index synchronized with the cindex as we gradually implement more and more methods in Rust. This will eventually be removed.

# 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