Make tidy check that opening and closing braces that begin a line do so with proper alignment.

This commit is contained in:
coalman 2017-04-17 03:45:30 -04:00
parent a754c10e79
commit 57e74542ee
3 changed files with 23 additions and 3 deletions

View file

@ -63,4 +63,13 @@ impl test {
let var
= "val";
fn test_fun4()
{
}
let var = if true {
"true"
} else { // Should not trigger
"false"
} // Should not trigger
}