1
0

Filter away words
Some checks failed
Run Python tests (through Pytest) / Test (push) Failing after 23s
Verify Python project can be installed, loaded and have version checked / Test (push) Failing after 21s

This commit is contained in:
Jon Michael Aanes 2025-02-28 10:59:47 +01:00
parent 2cbc5280f1
commit 44bb18d3be

View File

@ -36,6 +36,9 @@ IGNORABLE_WORDS_IN_NAME = frozenset(
'the', 'the',
'is', 'is',
'are', 'are',
'test',
'tests',
}, },
) )
@ -65,6 +68,7 @@ def format_test_prefix(
def to_camel_case_word(word: str, first: bool = False) -> str | None: def to_camel_case_word(word: str, first: bool = False) -> str | None:
word = word.strip()
if word.lower() in IGNORABLE_WORDS_IN_NAME: if word.lower() in IGNORABLE_WORDS_IN_NAME:
return None return None
if len(word) > 1 and word.upper() == word: if len(word) > 1 and word.upper() == word:
@ -84,11 +88,9 @@ def to_camel_case(description: str) -> str:
words[0] = to_camel_case_word(words[0], first=True) words[0] = to_camel_case_word(words[0], first=True)
for i in range(1, len(words)): for i in range(1, len(words)):
word = to_camel_case_word(words[i]) words[i] = to_camel_case_word(words[i])
if not word:
words[i] = '' words = [w for w in words if w]
else:
words[i] = word
return ''.join(words) return ''.join(words)