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

Unnecessary newline in same-file modules #49

Open
jaybosamiya opened this issue Mar 27, 2024 · 0 comments
Open

Unnecessary newline in same-file modules #49

jaybosamiya opened this issue Mar 27, 2024 · 0 comments
Labels
bug Something isn't working good first issue Good for newcomers

Comments

@jaybosamiya
Copy link
Collaborator

Consider

verus! { mod foo { fn foo() { } } }

It currently gets formatted to:

verus! {

mod foo {
    fn foo() {
    }

}

} // verus!

It would be preferable if it were formatted to

verus! {

mod foo {
    fn foo() {
    }
}

} // verus!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

1 participant