NormalizeTags#

Normalize tag names by normalizing case and removing duplicates.

Transformer configuration

NormalizeTags is included in the default transformers, but it can be also run separately with:

robotidy --transform NormalizeTags src

You can also disable NormalizeTags:

robotidy --configure NormalizeTags:enabled=False src

Supported cases: lowercase (default), uppercase, title case. You can configure case using case parameter:

robotidy --transform NormalizeTags:case=uppercase

You can remove duplicates without normalizing case by setting normalize_case parameter to False:

robotidy --transform NormalizeTags:normalize_case=False