Handle more keywords
This commit is contained in:
parent
a4dd2a3b9f
commit
00a37b9afb
|
@ -87,6 +87,11 @@ IGNORABLE_WORDS_IN_NAME = frozenset(
|
|||
'are',
|
||||
'test',
|
||||
'tests',
|
||||
'that',
|
||||
'these',
|
||||
'those',
|
||||
'it',
|
||||
'its',
|
||||
},
|
||||
)
|
||||
|
||||
|
@ -134,6 +139,7 @@ def to_camel_case(description: str) -> str:
|
|||
.replace('"', ' ')
|
||||
.replace('+', ' ')
|
||||
.replace('-', ' ')
|
||||
.replace('#', ' ')
|
||||
.replace(':', ' ')
|
||||
.replace("'", '')
|
||||
.strip(' \t.')
|
||||
|
|
Loading…
Reference in New Issue
Block a user