summaryrefslogtreecommitdiffstats
path: root/.yamllint.yaml
blob: 5a1e1e8751503c0344bd24389e086af5c38f1075 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
extends: default

rules:
  braces:
    min-spaces-inside: 0
    max-spaces-inside: 1
    min-spaces-inside-empty: 0
    max-spaces-inside-empty: 0

  brackets:
    min-spaces-inside: 0
    max-spaces-inside: 1
    min-spaces-inside-empty: 0
    max-spaces-inside-empty: 0

  comments:
    require-starting-space: true
    ignore-shebangs: true
    min-spaces-from-content: 1

  comments-indentation:
    level: error

  document-start:
    level: error
    present: false

  document-end:
    present: false

  empty-lines:
    max: 1

  indentation:
    spaces: 2

  line-length: disable

  truthy:
    allowed-values: ["true", "false", "on", "off"]

ignore: |
  .venv
  node_modules