.editorconfig
author Pierre-Yves David <pierre-yves.david@octobus.net>
Sat, 23 Nov 2019 13:59:17 +0100
changeset 43782 f1c49bc79b4d
parent 38293 1d6066336d7b
child 45411 c25efc468a49
permissions -rw-r--r--
repoview: add more tests to track operation not supposed to trigger filtering This test is useful to confirm we removed filtering trigger and to prevent it to come back without us noticing. The commands tested in the test were initially introduced one by one. However, on Martin von Zweigbergk request, we are adding them all at once. Differential Revision: https://phab.mercurial-scm.org/D7514

# 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