Add spellchecking for camelCase, PascalCase, and kebab-case

This commit is contained in:
Julian Stirling 2026-02-22 11:02:59 +00:00
parent 3f54084d14
commit 66b4a06e87
9 changed files with 40 additions and 8 deletions

View file

@ -49,7 +49,7 @@ def test_monkey_patched_handle_exit(side_effect, mocker):
# The error was raised so we know our custom function was run, check that
# handle_exit wasn't.
# Note: that the non-mocked shutdown function is entirely wrapped in a
# try/except BaseExcpetion, so that handle_exit will always run.
# try/except BaseException, so that handle_exit will always run.
assert original_mock_handle_exit.call_count == 0