From 5e511bf2e2589791115d6203c5900a8659958eeb Mon Sep 17 00:00:00 2001 From: Julian Stirling Date: Mon, 23 Feb 2026 09:42:27 +0000 Subject: [PATCH] Apply suggestions from code review of branch better-spellchecking Co-authored-by: Beth Probert --- .codespellrc2 | 6 +++--- .gitlab-ci.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.codespellrc2 b/.codespellrc2 index b4de4caf..c6226e69 100644 --- a/.codespellrc2 +++ b/.codespellrc2 @@ -1,9 +1,9 @@ [codespell] -# A seperate RC file for detecting camelCase, PascalCase, and kebab-case errors -# A little more prone to fals positives than our standard regex, aslo fails to detect +# A separate RC file for detecting camelCase, PascalCase, and kebab-case errors +# A little more prone to false positives than our standard regex, also fails to detect # hyphenated words in the dictonary. -# Same as the main RC-file except for also excludes CHANGELOG as this is well covered +# Same as the main RC-file except it also excludes CHANGELOG as this is well covered # by the normal RC file, and we get false positives from git hashes. skip = node_modules, *-lock.json, diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8b9efdd1..0cf7ca82 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -78,7 +78,7 @@ spelling: script: # Run with our standard regex, best for normal text and snake-case - codespell . - # Run again with a second regex that finds issues in camelCase, PascalCasem and kebab-case + # Run again with a second regex that finds issues in camelCase, PascalCase and kebab-case - codespell --config .codespellrc2 . # Python static analysis and formatting with ruff