in-style

DescriptionHow to align the 'in' keyword with respect to the 'let' keyword
Options
  • left-align
  • right-align
  • no-space
Defaultright-align
Ormoluright-align
Sincev0.9.0.0

Examples

testUser =
    let name = "Alice"
        age = 30
     in User name age
testUser =
    let name = "Alice"
        age = 30
    in  User name age
testUser =
    let name = "Alice"
        age = 30
    in User name age

For more examples, see the test files.

See also