Filter away words
This commit is contained in:
parent
2cbc5280f1
commit
44bb18d3be
|
@ -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)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user