.editorconfig
author Georges Racinet <georges.racinet@octobus.net>
Fri, 14 Jun 2019 10:57:07 +0100
changeset 42473 f4a65077e949
parent 38293 1d6066336d7b
child 45411 c25efc468a49
permissions -rw-r--r--
rust-cpython: management of shared libray suffix Before this changeset, the shared library objects suffixes were both (rustc output and Python input) hardcoded to '.so', which is wrong for Python3 and non Linux targets.

# 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