NormalizeAssignments¶
Normalize assignments.
It can change all assignment signs to either the most commonly used in a given file or a configured one.
Default behaviour is autodetect for assignments from Keyword Calls and removing assignment signs in
*** Variables *** section. It can be freely configured.
Disabling the formatter
NormalizeAssignments is included in the default formatters, but it can be also run separately with:
You can also disable it:
In this code the most common is no equal sign at all. It should remove = signs from all lines:
You can configure that behaviour to automatically add desired equal sign with equal_sign_type
(default autodetect) and equal_sign_type_variables (default remove) parameters.
Possible types are:
autodetectequal_sign('=')space_and_equal_sign(' =')
will result in:
Skip formatting¶
It is possible to use the following arguments to skip formatting of the code:
It is also possible to use disablers but skip option makes it easier to skip all instances of a given type
of the code.