.clang-format
author Anton Shestakov <av6@dwimlabs.net>
Wed, 22 Nov 2017 22:11:37 +0800
changeset 35182 1207a50a6dc3
parent 34798 e33381d95930
child 36262 d0a3fa849cb8
permissions -rw-r--r--
hgweb: look up "URLSearchParams" in "window" to work around jshint issues Unfortunately, current version of jshint (2.9.5) doesn't know such a global variable and complains that it's undefined. Since this line tries to look up URLSearchParams in a global scope (i.e. window), let's simply preface it with "window." to work around jshint.

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