You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[lint] disable opening_brace for multiline readability
* This rule `opening_brace` declares opening braces should be on the same line as the declaration
* However for multiline if / let statements, it makes it harder to read:
if let blah = blah,
let foo = blah.foo {
// do something, less readable
}
if let blah = blah,
let foo = blah.foo
{
// do something, more readable
}
* See linked PR for an upcoming option, so we can re-enable this rule
0 commit comments