robotframework-robocop icon indicating copy to clipboard operation
robotframework-robocop copied to clipboard

Tool for static code analysis of Robot Framework language

Results 85 robotframework-robocop issues
Sort by recently updated
recently updated
newest added

It would be good if `todo-in-comment` rule has configurable terms. E.g. `robocop --configure todo-in-comment:todos:OMG,bug` also this work `robocop --configure "todo-in-comment:todos:remove me,fix this ugly bug"` This should enable also terms in...

### What happened? Rule to keep keyword calling outlook in line with the keyword definition: ``` *** Settings *** Library String *** Test Cases *** Calling Keywords ${CAPS} Set Variable...

rule

It should be possible to configure `non-local-variables-should-be-uppercase` to allow lower-case variables in it. ```python *** Variables *** @{PROTOCOLS} TCP UDP *** Test Cases *** Test [Documentation] Doc. KW *** Keywords...

### What happened? In the FAQ section of `README.md`, regarding the possibility to integrate RoboCop with CI pipelines, the documentation reads > Yes, it is easy to integrate Robocop with...

bug
documentation

### What happened? Robocop reports following as `[W] 1007 Line is over-indented (uneven-indent)`, but I think it should be allowed. The issue happens only when comments are placed on the...

bug

It probably also happens for similar rule like too-long-keyword. Our check simply substract end line from node start line. But empty lines are part of the keyword/test which affect node...

bug

### What happened? An example code ``` Keyword1 Keyword2 # Comment Keyword3 Keyword4 ``` won't pass the rule 1005 (empty-lines-between-keywords). The received output will be as follows: > Invalid number...

bug

I'd like to configure e. g. line-too-long to raise warning if length>140, but error when length>200. The same for other parameterized rules.