checkIfElse
Checks if every if has a matching
else section. Defining an
else section for every
if improves readability by showing more clearly
what it means when the if (and possible
elseif's) condition are not satisfied.
Exemption tag: %@ok<IFELS>
Configurable parameters
- AllowIfWithoutElse (boolean): Set to
trueto allow anif, that does not have anelseifsection, without a matchingelsesection. The default value for this parameter is false.