.editorconfig
author Yuya Nishihara <yuya@tcha.org>
Sat, 09 Jun 2018 18:58:16 +0900
changeset 38611 3d8ef60569d8
parent 38293 1d6066336d7b
child 45411 c25efc468a49
permissions -rw-r--r--
fileset: make debugfileset filter repository files This prepares for the structural change of the fileset. A computed fileset will no longer be a set of files, but a boolean function (i.e. matcher) to test if an input file matches the given fileset expression. --all-files option is added because some examples in the test need to scan files across revisions.

# 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