1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-11 16:00:57 +00:00

clang-format: set the IncludeBlocks setting to "Preserve"

This was default in clang-format v7, but got changed to "Regroup" in v9.
We prefer the old way for now and setting this explicitly makes it
easier to support both versions.
This commit is contained in:
Pavol Rusnak 2020-05-04 17:06:55 +02:00
parent a623799a11
commit 2798109872
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -3,3 +3,6 @@ BasedOnStyle: Google
# Google style has a default of 80 lines, but clang-format 7 disregards it in
# a weird case in modtrezorio-fatfs.h. Setting it explicitly helps.
ColumnLimit: 80
# This setting differs between clang-format 7 and 9.
# Let's set it explicitly to v7 value
IncludeBlocks: Preserve