You can add command line options to an argument file, preferably one option with value for a line.Such file can be used as an input for Robocop with --argumentfile / -A option, e.g.robocop -A robocop.cfg. You can mix arguments from a file with ones provided in run command.
It is a default file that is loaded only when no command line options are provided for Robocop.When running plain robocop command, it looks for .robocop file from place where it was rununtil it finds .git file. Options can be provided like in the example above.
If there is no .robocop file and toml module is installed,Robocop will try to load configuration from pyproject.toml file (if it exists).Options have the same names as command line argumentsand need to be placed under [tool.robocop] section.
aa06259810