.editorconfig
author Manuel Jacob <me@manueljacob.de>
Wed, 11 Mar 2020 05:41:02 +0100
changeset 44498 aa0e1341457b
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
tests: check availability of pyflakes by trying to import pyflakes module Since e397c6d74652, we use the pyflakes module instead of the pyflakes executable. As was pointed out during the review, the hghave check can be rewritten to try to import the pyflakes module instead of spawning a new subprocess.

# 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