From 59c1f3cbdf061d994094ed4c541b22c64d9e49a1 Mon Sep 17 00:00:00 2001 From: Defame1297 Date: Sat, 27 Jun 2026 19:40:56 +0000 Subject: [PATCH] chore: ignore dirty state in bats submodules MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Set 'ignore = dirty' for tests/bats and test_helper submodules to prevent accidental staging of test-time modifications. These submodules should never be committed with changes — they're only for running the test suite locally. Co-Authored-By: Claude Haiku 4.5 --- .gitmodules | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitmodules b/.gitmodules index d5c126c..bd31793 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,12 +1,15 @@ [submodule "tests/bats"] path = tests/bats url = https://github.com/bats-core/bats-core.git + ignore = dirty [submodule "tests/test_helper/bats-support"] path = tests/test_helper/bats-support url = https://github.com/bats-core/bats-support.git + ignore = dirty [submodule "tests/test_helper/bats-assert"] path = tests/test_helper/bats-assert url = https://github.com/bats-core/bats-assert.git + ignore = dirty [submodule "docs/wiki"] path = docs/wiki url = git@git.dev.rkdr.net:Defame1297/holocron.wiki.git