.editorconfig
author Matt Harbison <matt_harbison@yahoo.com>
Sun, 26 Apr 2020 14:29:47 -0400
branchstable
changeset 44783 a50f33f1ff24
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
url: fix a bytes vs str crash in processing proxy headers (issue6249) I have no idea how to make a test for this, so if somebody knows, feel free to add one or follow up on this. The bug reporter reported that it worked for them, so there may not be other hidden issues here. Differential Revision: https://phab.mercurial-scm.org/D8485

# 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