-
Notifications
You must be signed in to change notification settings - Fork 506
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
The trailing comma experimental rule does not working properly #1297
Comments
Can you be a little more explicit and copy the code example that causes the problem to this issue? Also try to minimise the code sample. Finally, provide the exact output that you expect. |
Ok, I think I have reconstructed your problem. The code below, should be accepted unchanged by ktlint:
|
paul-dingemans
pushed a commit
to paul-dingemans/ktlint
that referenced
this issue
Dec 5, 2021
The code previously contained special handling for case below: @annotation([ "something", ]) This special case however was also triggered in case of: @annotation( foo = [ "something" ], bar = "some-bar" ) In this case the normal handling of value argument lists should be used once for the outer value argument list (containing elements foo and bar) and once for the inner value argument list of parameter foo (containing element "something"). So in example above, a trailing comma has to be added to both the outer and the inner value argument list. Closes pinterest#1297
2 tasks
@paul-dingemans Thanks for taking care of that. 💪 |
romtsn
added a commit
that referenced
this issue
Dec 13, 2021
) The code previously contained special handling for case below: @annotation([ "something", ]) This special case however was also triggered in case of: @annotation( foo = [ "something" ], bar = "some-bar" ) In this case the normal handling of value argument lists should be used once for the outer value argument list (containing elements foo and bar) and once for the inner value argument list of parameter foo (containing element "something"). So in example above, a trailing comma has to be added to both the outer and the inner value argument list. Closes #1297 Co-authored-by: Paul Dingemans <pdingemans@bol.com> Co-authored-by: Roman Zavarnitsyn <rom4ek93@gmail.com>
Release it? 😊 |
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
The trailing comma experimental rule is not working properly for this file:
https://github.com/mohsenoid/Rick-and-Morty/blob/c9fb8dc093c7986055e8892b8e126f60bf0247cc/app/src/main/kotlin/com/mohsenoid/rickandmorty/data/db/DbRickAndMorty.kt#L51
Android Studio works correctly and adds a comma, but Ktlint doesn't and even removes the comma added by Android Studio!
Expected Behavior
Add a comma and do not remove the one from the Android Studio code styler
Observed Behavior
Do not add a comma and also remove the one from the Android Studio code styler
Steps to Reproduce
Take this file and enable both these rules in .editorconfig
execute this command:
Your Environment
The text was updated successfully, but these errors were encountered: