.editorconfig
author Pierre-Yves David <pierre-yves.david@octobus.net>
Thu, 16 Apr 2020 22:56:03 +0200
branchstable
changeset 44744 23dd43d94f50
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
wait-on-file: adjust the timer counter The wait performed in increment of 0.01 second, but the timer was expressed in second. So we did not wait 20s, we waited 0.2 second. Internally we adjust the counter to be expressed in centisecond. This prevent some flackyness in the test. Differential Revision: https://phab.mercurial-scm.org/D8453

# 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