From c9131abdbcb18aa620fd80b0978340cb1ddb897e Mon Sep 17 00:00:00 2001 From: Dmitry Savintsev Date: Thu, 22 Feb 2024 21:11:21 +0100 Subject: [PATCH] Add formatcheck Make target (#3480) Signed-off-by: Dmitry S --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 2d8aae6c78a..cf4ac52b515 100644 --- a/Makefile +++ b/Makefile @@ -33,3 +33,7 @@ image: # format runs format format: ./scripts/format.sh -f true + +# formatcheck runs format for diagnostics, without modifying the code +formatcheck: + ./scripts/format.sh -f false