From 4d9ea03d170cf504a40bf3a85788af84cccaee80 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Wed, 24 Sep 2025 08:10:09 +0200 Subject: [PATCH] codeowners : use slash prefix for root files [no ci] (#16210) This commit adds a leading slash to the paths of root-level files in the CODEOWNERS file. The motivation for this is that these might otherwise match files in subdirectories that have other/additional owners will override them. Refs: https://github.com/ggml-org/llama.cpp/pull/16209#issuecomment-3326434274 --- CODEOWNERS | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/CODEOWNERS b/CODEOWNERS index d5a631ad56..dc1f003c8a 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -95,12 +95,12 @@ /tools/tokenize/ @ggerganov /tools/tts/ @ggerganov /vendor/ @ggerganov -.clang-format @slaren -.clang-tidy @slaren -AUTHORS @ggerganov -CMakeLists.txt @ggerganov -CONTRIBUTING.md @ggerganov -LICENSE @ggerganov -README.md @ggerganov -SECURITY.md @ggerganov -requirements*.txt @CISC +/.clang-format @slaren +/.clang-tidy @slaren +/AUTHORS @ggerganov +/CMakeLists.txt @ggerganov +/CONTRIBUTING.md @ggerganov +/LICENSE @ggerganov +/README.md @ggerganov +/SECURITY.md @ggerganov +/requirements*.txt @CISC