view .clang-format @ 50883:2b4bcdc948e7

rust: don't escape spaces in regex Spaces are not in fact a regex special character, and escaping them is not correct.
author Spencer Baugh <sbaugh@janestreet.com>
date Wed, 02 Aug 2023 09:59:49 -0400
parents d0a3fa849cb8
children
line wrap: on
line source

BasedOnStyle: LLVM
IndentWidth: 8
UseTab: ForIndentation
BreakBeforeBraces: Linux
AllowShortIfStatementsOnASingleLine: false
IndentCaseLabels: false
AllowShortBlocksOnASingleLine: false
AllowShortFunctionsOnASingleLine: false
IncludeCategories:
  - Regex:           '^<'
    Priority:        1
  - Regex:           '^"'
    Priority:        2