From f26b058d162f3cd66d0939f2e5e06bf3212c6916 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kjell=20Hedstr=C3=B6m=20-=20seeking=20Senior=20Engineering?= =?UTF-8?q?=20roles=20as=20well=20as=20contract=20opportunities?= Date: Thu, 30 Nov 2023 16:22:17 -0700 Subject: [PATCH] Update PULL_REQUEST_TEMPLATE.md --- PULL_REQUEST_TEMPLATE.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/PULL_REQUEST_TEMPLATE.md b/PULL_REQUEST_TEMPLATE.md index 1232346..2faee6b 100644 --- a/PULL_REQUEST_TEMPLATE.md +++ b/PULL_REQUEST_TEMPLATE.md @@ -7,7 +7,11 @@ # Formatting - [ ] I am following the formatting style of the existing codebase. -_a clang-format configuration file is available in the root of g3log_ +_a clang-format configuration file is available in the root of g3log._ +- _Use VSCode with clang-formatter or commandline:_ +`clang-format -i path_to_file` +- _or recursive throughout the whole repo:_ `find . -iname "*.hpp" -o -iname "*.cpp" | xargs clang-format -i` + # Testing