ui_migration codespell(config) Add codespell exceptions for fixtures and else

This commit is contained in:
Antonio Anaya 2026-05-15 08:30:00 -06:00
parent 938d202b38
commit e478644d2a
2 changed files with 6 additions and 6 deletions

View file

@ -18,9 +18,7 @@ skip = node_modules,
*.egg-info, *.egg-info,
src/tests/unit, src/tests/unit,
./webapp/src/tests/unit/*.spec.js, ./webapp/src/tests/unit/*.spec.js,
./webapp/eslint.config.mjs, ./webapp/coverage/*,
./webapp/coverage,
regex = [a-zA-Z0-9\-']+ regex = [a-zA-Z0-9\-']+
ignore-words-list = fom ignore-words-list = fom, afterAll

View file

@ -1,7 +1,7 @@
[codespell] [codespell]
# A separate RC file for detecting camelCase, PascalCase, and kebab-case errors # 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 # A little more prone to false positives than our standard regex, also fails to detect
# hyphenated words in the dictonary. # hyphenated words in the dictionary.
# Same as the main RC-file except it 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. # by the normal RC file, and we get false positives from git hashes.
@ -19,7 +19,9 @@ skip = node_modules,
.venv, .venv,
*.egg-info, *.egg-info,
report.xml, report.xml,
CHANGELOG.md CHANGELOG.md,
./webapp/src/tests/fixtures/*,
./webapp/coverage/*,
# Ignores split by | # Ignores split by |
# Ignore hexadecimal numbers preceded by # # Ignore hexadecimal numbers preceded by #