From 127dae1c3b48c3a4dceddb9000309bfeaa8d0a01 Mon Sep 17 00:00:00 2001 From: Johnny Richard Date: Wed, 26 Apr 2023 00:40:44 +0200 Subject: style: Use clang-format as formatter and linter tool We want to keep the code style consistent, this first commit adds a .clang-format in order to "document" our style code. This patch also adds a target *linter* to Makefile which will complain if we have any style issue on test and src dirs. I have run the follow command to create the .clang-format file: $ clang-format -style=mozilla -dump-config > .clang-format And I also made some adjusts to .clang-format changing the following properties: PointerAlignment: Right ColumnLimit: 120 Commands executed to fix the current styling: $ find . -name *.h | xargs clang-format -i $ find . -name *.c | xargs clang-format -i Signed-off-by: Johnny Richard --- test/Makefile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test/Makefile') diff --git a/test/Makefile b/test/Makefile index 40f5cf9..717b430 100644 --- a/test/Makefile +++ b/test/Makefile @@ -14,6 +14,10 @@ all: munit.o $(TESTS) clean: $(RM) *.o *_test +.PHONY: linter +linter: $(SRCS) + clang-format --dry-run --Werror $? + string_view_test: munit.o ../build/string_view.o string_view_test.o $(CC) $? $(CFLAGS) -o $@ -- cgit v1.2.3