Reports method calls where the number of arguments passed (including blocks) doesn't match the method's signature. The method's signature is
taken from either of:
- The method declaration
- The RBS type signature
A quick fix is available in some situations to add missing or remove excess arguments.
Example:
def example
end
# Too many arguments provided
example(true)