robotframework-tidy
robotframework-tidy copied to clipboard
Robot Framework code formatter
From #300 Transformer for formatting the documentation. By default it could use one style of the documentation (like Google docstring) but allow to switch to some other popular styles. Upon...
It could be automatic - pull all configs/examples and run the in the isolation and see if they work. For before/after examples we could try to check also before/after output...
From #385 Since the addition of skip_* parameter we can reverse the behaviour of this parameter for better consistency.
Currently --separator option only supports space and tab. It would be great if you could add pipe separator support. I also agree, from other bug discussion, with overall methodology when...
In RF, single spaces and underscores in variable names are ignored. It would be nice to have a way to normalize this depending on the preferred separator. Given ``` ${variable...
Following code: ```` *** Keywords *** Keyword var ${var} ${one} ${two} ``` is syntax error (``${var}`` is assign but there is no keyword call). It will be recognized as EmptyLine...
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;
If name and values are same they could be shorten like this: ``` ${testVar} Set Variable testVarValue Set Test Variable ${testVar} ${testVar} ``` to: `Set Test Variable ${testVar}` ``` ${suiteVar}...
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...
See sister issue in the Robocop: https://github.com/MarketSquare/robotframework-robocop/issues/522 . We need to check how it behaves etc. Should we convert settings to Task X variants if there is Task section in...