Elm names (i.e. variable, type, module, variant and port names) can contain unicode lower-/uppercase characters, but elm-format does not test for this in it's test suite.
What is lower and uppercase is determined by haskells Data.Char.isLower and Data.Char.isUpper (source: conversation with Evan)
Elm names (i.e. variable, type, module, variant and port names) can contain unicode lower-/uppercase characters, but elm-format does not test for this in it's test suite.
What is lower and uppercase is determined by haskells
Data.Char.isLower
andData.Char.isUpper
(source: conversation with Evan)