Pattern: Mismatched format parameters
Issue: -
This lint sees if there is a mismatch between the number of expected fields for format
/sprintf
/#%
and what is actually passed as arguments.
# bad
format('A value: %s and another: %i', a_value)
# good
format('A value: %s and another: %i', a_value, another)