-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
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
min_length maybe not being respected? #54
Comments
Additionally, it would be nice if splitting the arguments also took the |
a = [1,2,3,4,5,6,7,8]; I wanted a way to keep that on one line as splitting it over 8 lines seemed a bit ridiculous to me. So I added the
is well over 40 columns, and is only three elements anyways. The only thing that ought to make it split out, is when the That said, the
that would be due to the max_columns setting - possibly inaccurately applied 😄 , though it looks to me like the last character of the function parameters (a space) is right at 120 columns, so I think it is correct there. |
That makes a lot more sense. Thanks for explaining. Also, I feel really foolish. I had my editor ruler at 80 and just expected cfformat to match. Once I configured it correctly it works as expected. Thanks! |
I think something is off with the
min_length
determination.This component does not split the arguments on to new lines no matter what I choose for any of
min_length
settings. However, add one more character to the argument list up there and it will split.The text was updated successfully, but these errors were encountered: