From 996cba749778480745dcbaf3bf17c52f63000b52 Mon Sep 17 00:00:00 2001 From: Ben Dichter Date: Wed, 13 May 2026 21:52:49 -0400 Subject: [PATCH] codespell: ignore 'aci' (variable name for anatomical_coordinates_image) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The 001712/IBL-Widefield notebook (PR #142) uses `aci` as a local variable shorthand for the NWB field `anatomical_coordinates_image`: aci = localization.anatomical_coordinates_images['AnatomicalCoordinatesImageCCFv3'] space = aci.space x_coords = aci.x[:] ... Codespell flagged every `aci` token as a typo for `acpi` — ~50 errors across one PR, blocking CI. Adding `aci` to ignore-words-list (same pattern as the `makin` fix in #154 for the CEBRA author surname). Co-Authored-By: Claude Opus 4.7 (1M context) --- .codespellrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.codespellrc b/.codespellrc index 1c84e47..1db3f2b 100644 --- a/.codespellrc +++ b/.codespellrc @@ -5,4 +5,5 @@ ignore-regex = "image/png": ".*|^ *".*data:\S+;base64.* # nd - people just like it # makin - surname (Joseph G. Makin, cited in 000129/MathisLab CEBRA notebook) -ignore-words-list = nd,trough,mater,mebrains,makin +# aci - variable name for `anatomical_coordinates_image` in 001712/IBL-Widefield +ignore-words-list = nd,trough,mater,mebrains,makin,aci