From 5bf501de91702aa449bf333581116010721516cb Mon Sep 17 00:00:00 2001 From: MichiRecRoom <1008889+LikeLakers2@users.noreply.github.com> Date: Wed, 3 Jul 2024 15:14:19 -0400 Subject: [PATCH] Fix the forbidden include globs on tgstation_dme.json - I forgot I made them relative to the base_scanning_directory --- tools/ticked_file_enforcement/schemas/tgstation_dme.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/ticked_file_enforcement/schemas/tgstation_dme.json b/tools/ticked_file_enforcement/schemas/tgstation_dme.json index 8a3a82ef1253..ecaaa3bac5f8 100644 --- a/tools/ticked_file_enforcement/schemas/tgstation_dme.json +++ b/tools/ticked_file_enforcement/schemas/tgstation_dme.json @@ -4,7 +4,7 @@ "check_subdirectories": true, "exempt_include_globs": [], "forbidden_include_globs": [ - "code/modules/tgs/**/*.dm", - "code/modules/unit_tests/[!_]*.dm" + "modules/tgs/**/*.dm", + "modules/unit_tests/[!_]*.dm" ] }