NormalizeSettingName

Normalize setting name.

Formatter configuration

NormalizeSettingName is included in the default formatters, but it can be also run separately with:

robocop format --select NormalizeSettingName

You can also disable NormalizeSettingName:

robocop format --configure NormalizeSettingName.enabled=False

Ensure that setting names are title case without leading or trailing whitespace.

*** Settings ***
library    library.py
test template    Template
FORCE taGS    tag1

*** Keywords ***
Keyword
    [arguments]    ${arg}
    [TEARDOWN]   Teardown Keyword
*** Settings ***
Library    library.py
Test Template    Template
Force Tags    tag1

*** Keywords ***
Keyword
    [Arguments]    ${arg}
    [Teardown]   Teardown Keyword