PR-URL: https://github.com/nodejs/node/pull/52465 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com>
16 lines
403 B
YAML
16 lines
403 B
YAML
# Defines the Google C++ style for automatic reformatting.
|
|
# http://clang.llvm.org/docs/ClangFormatStyleOptions.html
|
|
BasedOnStyle: Google
|
|
DerivePointerAlignment: false
|
|
MaxEmptyLinesToKeep: 1
|
|
IfMacros:
|
|
- IF
|
|
- IF_NOT
|
|
Macros:
|
|
# Make clang-format think TurboShaft `ELSE` expands to just `else`, so that
|
|
# it formats well alongside `if`
|
|
- ELSE=else
|
|
StatementMacros:
|
|
- DECL_CAST
|
|
- DECL_VERIFIER
|