Closed stereotype441 closed 1 month ago
That's the kind of bug that I'd be tempted to just turn a blind eye to. 😅
Half joking. This bug is the kind of thing that indicates, maybe the code isn't readable longer than 80 chars, and maybe it isn't readable wrapped into multiple lines; maybe there is a naming solution, or a typedef solution, that results in more readable code.
https://dart-review.googlesource.com/c/sdk/+/386736 introduces several declarations that look similar to this:
Note that the line
TypeParameterStructure extends SharedTypeParameterStructure<TypeStructure>,
is longer than 80 characters. The formatter insists on placing this text all on the same line, causing failures in thelines_longer_than_80_chars
lint.To see more examples, search for the text
// ignore: lines_longer_than_80_chars
in https://dart-review.googlesource.com/c/sdk/+/386736.