.editorconfig
author Yuya Nishihara <yuya@tcha.org>
Sun, 20 Jan 2019 11:51:21 +0900
branchstable
changeset 41300 66102f6fa10a
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
templatekw: fix crash on multiple latesttags resolution at wdir (issue6055) It appears not easy to fix only() to support wdir(), so this patch works around the issue by getlatesttags(). The "+1" after len(changes) doesn't matter since ctx never changes while sorting. It's just for clarity.

# 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