Václav Fuksa
Václav Fuksa
I suggest to implement all-catching check of indentation. The current rules regarding indentation ([W1007] uneven-indent and [E1008] bad-indent) allow me to indent very sloppily. 😄 It could work roughly like...
[RF's documentation](http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#using-variables) reads: _Variable names can basically have any characters between the curly braces. However, using only alphabetic characters from a to z, numbers, underscore and space is recommended, and...
I suggest creating a new rule which would report an argument of a keyword if it is not used at all in the body of keyword (be it declared in...
This could be a sort of extension of rule _possible-variable-overwriting_. It need not be obvious that variables e.g. `${abc}` and `${A_B C}` are the same. Imagine the situation: someone sees...
**Is your feature request related to a problem? Please describe.** I sometimes want to wait for alerts for different times. The cause of the difference is whether I know the...
Robocop, rule 0702, complains "Missing blank space after comment character" when it comes across `#some comment`. I like to have a transformer adding a space after `#` when missing;
Hi, as regards https://robotidy.readthedocs.io/en/latest/transformers/InlineIf.html: 1. It reads: _With following configuration Robotidy will transform all IFs to inline IFs if they are under 140 characters long:_ ```robotidy --line-length 140 src.robot``` This...
Hi, I came across strange behaviour of RF regarding embedded arguments. I have keyword ``` Perform ${arg:[^ ]+} Log To Console ${arg} ``` In other words, the argument cannot contain...