.clang-format
author Matt Harbison <matt_harbison@yahoo.com>
Tue, 02 Jan 2018 21:18:30 -0500
changeset 35525 83903433c2eb
parent 34798 e33381d95930
child 36224 d0a3fa849cb8
permissions -rw-r--r--
lfs: add a local store method for opening a blob The has() and read() methods already dynamically switch between the usercache and local store. This should generally be preferred to directly accessing the vfs instances outside of the store. The file is now explicitly opened in binary mode for clarity. (It was also being opened in binary mode before, but only because vfs.__call__() appends 'b' if needed when not opening with 'text=True'.)

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