lexmag / elixir-style-guide

An opinionated Elixir style guide

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add rule about defstruct/1

lexmag opened this issue · comments

# Bad
defstruct [year: nil, month: nil, day: nil, calendar: Calendar.ISO]

# Good
defstruct [:year, :month, :day, calendar: Calendar.ISO]