.editorconfig
author Raphaël Gomès <rgomes@octobus.net>
Fri, 02 Aug 2019 16:17:02 +0200
changeset 42683 bbb002b378f3
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
byteify-strings: add cli argument to handle `attr*()` when they are methods Certain code bases have useful utils that wrap the builtin functions, and are called like `util.setattr`.

# 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