R42 – The parameter on a method/procedure has a short name (and is likely to be meaningless) (WMB)

The parameter on a method/procedure has a short name (and is likely to be meaningless) (WMB)

The default is 2.

This would set the minimum length of a procedure/function parameter to 4 sonar.mb.esql.parameterlength=5
For example – “amt” would be an issue (with a minimum length of 4)   CREATE PROCEDURE CalculateTotalTax(IN amt INTEGER) BEGIN
    …….

This might be more readable   CREATE PROCEDURE CalculateTotalTax(IN amount INTEGER) BEGIN
    …….