.clang-format
author Gregory Szorc <gregory.szorc@gmail.com>
Thu, 01 Feb 2018 19:32:42 -0800
changeset 36218 e4ccd7a69f77
parent 34798 e33381d95930
child 36224 d0a3fa849cb8
permissions -rw-r--r--
httppeer: change logic around argument handling The code to process arguments only makes sense if there are arguments. So change an "else" to "elif args", remove an "if" that isn't necessary, and add some docs for good measure. Differential Revision: https://phab.mercurial-scm.org/D2214

BasedOnStyle: LLVM
IndentWidth: 8
UseTab: ForIndentation
BreakBeforeBraces: Linux
AllowShortIfStatementsOnASingleLine: false
IndentCaseLabels: false
AllowShortBlocksOnASingleLine: false
AllowShortFunctionsOnASingleLine: false