We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
# credo:disable-for-next-line
I just updated to credo 1.7.11 from 1.7.8 and got a new Credo warning: Function takes too many parameters (arity is 9, max is 8).
Function takes too many parameters (arity is 9, max is 8).
The function already had credo:disable-for-next-line on the line before it.
credo:disable-for-next-line
# credo:disable-for-next-line defp some_func(arg1, arg2, _, arg4, arg5, arg6, arg7, arg7, arg9) :do_stuff end
If I put # credo:disable-for-this-file at the top of the file, it disables the warning.
# credo:disable-for-this-file
The text was updated successfully, but these errors were encountered:
Could not replicate with 1.7.11
Sorry, something went wrong.
@nathanl I wasn't able to reproduce this either. Mmmh, any other info you can share?
No branches or pull requests
I just updated to credo 1.7.11 from 1.7.8 and got a new Credo warning:
Function takes too many parameters (arity is 9, max is 8).
The function already had
credo:disable-for-next-line
on the line before it.If I put
# credo:disable-for-this-file
at the top of the file, it disables the warning.The text was updated successfully, but these errors were encountered: