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? # 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 function-signature rule can cause max-line-length violations on annotated functions.
object MyClass { @[MyAnnotation] internal fun thisIsAnExtremelyLongFunctionNameWithALotOfWordsSoManyWords( thisIsAReallyReallyLongTypeNameThatIsVeryLog: ThisIsAReallyReallyLongTypeNameThatIsVeryLog, anotherReallyReallyReallyLongTypeNameHelloThere: AnotherReallyReallyReallyLongTypeNameHelloThere, ): YetAnotherReallyReallyLongFunctionNameLookAtThis? { return null } }
Formats to:
object MyClass { @[MyAnnotation] internal fun thisIsAnExtremelyLongFunctionNameWithALotOfWordsSoManyWords(thisIsAReallyReallyLongTypeNameThatIsVeryLog: ThisIsAReallyReallyLongTypeNameThatIsVeryLog, anotherReallyReallyReallyLongTypeNameHelloThere: AnotherReallyReallyReallyLongTypeNameHelloThere): YetAnotherReallyReallyLongFunctionNameLookAtThis? { return null } }
This:
object MyClass { @MyAnnotation internal fun thisIsAnExtremelyLongFunctionNameWithALotOfWordsSoManyWords( thisIsAReallyReallyLongTypeNameThatIsVeryLog: ThisIsAReallyReallyLongTypeNameThatIsVeryLog, anotherReallyReallyReallyLongTypeNameHelloThere: AnotherReallyReallyReallyLongTypeNameHelloThere, ): YetAnotherReallyReallyLongFunctionNameLookAtThis? { return null } }
Does not reformat.
.editorconfig
The text was updated successfully, but these errors were encountered:
Handle function signature preceded by an annotation array similar to …
5e603d5
…function preceded by a singular annotation Closes pinterest#1690
Function signature preceded by an annotation array (#1694)
65b722c
* Handle function signature preceded by an annotation array similar to function preceded by a singular annotation Closes #1690
Successfully merging a pull request may close this issue.
The function-signature rule can cause max-line-length violations on annotated functions.
Steps to Reproduce
Formats to:
This:
Does not reformat.
Your Environment
.editorconfig
settings: noneThe text was updated successfully, but these errors were encountered: