Skip to content
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

Long lines in interfaces inside structs are not broken down #126

Open
noomly opened this issue May 6, 2024 · 0 comments
Open

Long lines in interfaces inside structs are not broken down #126

noomly opened this issue May 6, 2024 · 0 comments

Comments

@noomly
Copy link

noomly commented May 6, 2024

Golines doesn't do anything when ran on the following piece of code:

type MyStruct struct {
	LongInterface interface {
		SuperLongFunctionName(anArgument string, anotherReallyLongArgument string, superDuperLongArgument string, definitelyTheLongestArgument string) error
	}
}

My expectation was for it to format it this way:

type MyStruct struct {
	LongInterface interface {
		SuperLongFunctionName(
			anArgument string,
			anotherReallyLongArgument string,
			superDuperLongArgument string,
			definitelyTheLongestArgument string,
		) error
	}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant