summaryrefslogtreecommitdiff
path: root/.yamllint
blob: dd8f073c378ce03761ab140dc55dd67801bf319f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---

extends: default

rules:
  indentation:
    indent-sequences: false
    level: error
  truthy:
    allowed-values:
    - 'false'
    - 'no'
    - 'on'  # Allow "on" key name in GHA CI/CD workflow definitions
    - 'true'
    - 'yes'

...