summaryrefslogtreecommitdiff
path: root/.yamllint.yml
blob: 0656656125e9128543fb2fb03481a5544b55576c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
extends: default

rules:

  indentation:
    spaces: 2

  # 120 chars should be enough, but don't fail if a line is longer
  line-length:
    max: 120
    level: warning
    allow-non-breakable-words: true

  # we don't have multiple document per file
  document-start: disable
  document-end: disable