---
extends: default

rules:
  # Absolutely must:
  new-line-at-end-of-file:
    level: error
  new-lines:
    type: unix
    level: error
  truthy:  # Disallow values that convert to booleans when parsing
    level: error

  # Good style:
  line-length:
    max: 120
    allow-non-breakable-words: true
    allow-non-breakable-inline-mappings: false
    level: warning

  # Meh
  indentation:
    indent-sequences: whatever
