.editorconfig
author Yuya Nishihara <yuya@tcha.org>
Fri, 31 Jan 2020 00:08:30 +0900
changeset 44294 06df075b8925
parent 38293 1d6066336d7b
child 45411 c25efc468a49
permissions -rw-r--r--
rust-cpython: use PyList.insert() instead of .insert_item() Silences the deprecated warning. https://github.com/dgrunwald/rust-cpython/commit/e8cbe864841714c5555db8c90e057bd11e360c7f

# See http://EditorConfig.org for the specification

root = true

[*.py]
indent_size = 4
indent_style = space
trim_trailing_whitespace = true

[*.{c,h}]
indent_size = 8
indent_style = tab
trim_trailing_whitespace = true

[*.t]
indent_size = 2
indent_style = space
trim_trailing_whitespace = false