Disable clang-format for sensitive blocks

Things like macro blocks should not be auto-formatted.

Signed-off-by: Tim Crawford <tcrawford@system76.com>
This commit is contained in:
Tim Crawford
2021-07-19 09:40:22 -06:00
committed by Jeremy Soller
parent 04df6ae311
commit b70a09e205
58 changed files with 116 additions and 1 deletions

View File

@ -7,6 +7,7 @@
#define __code
#endif
// clang-format off
static const char __code BOARD[] =
"76EC_BOARD="
xstr(__BOARD__);
@ -14,6 +15,7 @@ static const char __code BOARD[] =
static const char __code VERSION[] =
"76EC_VERSION="
xstr(__FIRMWARE_VERSION__);
// clang-format on
const char * board() {
return &BOARD[11];