Skip to content
Vinicius Reif Biavatti edited this page Jul 25, 2022 · 2 revisions
  • Do not use unnecessary spaces (Except for inline comments)
  • Do not align the content vertically

✅ Do

values = [1, 2, 3, 4]

name = 'John'
surname = 'Due'

❌ Don't

values = [ 1, 2, 3, 4 ]

name    = 'John'
surname = 'Due'
Clone this wiki locally