MarketSquare / robotframework-robocop

Tool for static code analysis of Robot Framework language

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

One argument per continuation line

bhirsz opened this issue · comments

See style guide

Proposing the rule name Arguments per continuation line defaulting one, but could also be configured. If configured, it is the max count per line i.e. less is ok too.

E.g. following is valid with a configuration of 2 or above:

*** Keywords ***
Custom Keyword With Required Arguments
    [Arguments]    ${name}    ${surname}
    ...            ${street}
    ...            ${block}
    ...            ${apartment}
    ...            ${state}    ${zip}
    Do Something