.editorconfig
author Raphaël Gomès <rgomes@octobus.net>
Fri, 02 Aug 2019 09:48:13 +0200
changeset 42702 e9592e113c31
parent 38293 1d6066336d7b
child 45411 c25efc468a49
permissions -rw-r--r--
byteify-strings: handle triple quoted strings if they are not docstrings As with anything in this script, this is a best effort approach. Most of the time, when a triple quoted string is assigned to something, it's not a docstring.

# 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