Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/robocop/linter/rules/naming.py
Original file line number Diff line number Diff line change
Expand Up @@ -825,6 +825,8 @@ def check_keyword_naming(self, keyword_name: str, node: Node, is_keyword_definit
if " " in part:
normalized = ".".join(parts[i:])
break
else:
normalized = parts[-1]
normalized = normalized.replace("'", "") # replace ' apostrophes
if "_" in normalized:
self.report(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,3 +119,9 @@ Quoted "${values_and_words}"
I'll Need To Test Partial Quotes
And "${variables}" And "some other ${variables}" "shall work"
And "nested quotation "Should Not Be" considered " And Single "

Library With Underscore
# Bug #1733
fk_CommonXml.Compare
fk_CommonXml.Compare ${argument}
fk_CommonXml.Compare With Words ${argument}
Loading