Filter away words
This commit is contained in:
parent
2cbc5280f1
commit
44bb18d3be
|
@ -36,6 +36,9 @@ IGNORABLE_WORDS_IN_NAME = frozenset(
|
|||
'the',
|
||||
'is',
|
||||
'are',
|
||||
|
||||
'test',
|
||||
'tests',
|
||||
},
|
||||
)
|
||||
|
||||
|
@ -65,6 +68,7 @@ def format_test_prefix(
|
|||
|
||||
|
||||
def to_camel_case_word(word: str, first: bool = False) -> str | None:
|
||||
word = word.strip()
|
||||
if word.lower() in IGNORABLE_WORDS_IN_NAME:
|
||||
return None
|
||||
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)
|
||||
for i in range(1, len(words)):
|
||||
word = to_camel_case_word(words[i])
|
||||
if not word:
|
||||
words[i] = ''
|
||||
else:
|
||||
words[i] = word
|
||||
words[i] = to_camel_case_word(words[i])
|
||||
|
||||
words = [w for w in words if w]
|
||||
|
||||
return ''.join(words)
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user