File: .yamllint

package info (click to toggle)
python-cheroot 11.1.2%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,236 kB
  • sloc: python: 6,969; makefile: 10
file content (20 lines) | stat: -rw-r--r-- 290 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---

extends: default

rules:
  indentation:
    level: error
    indent-sequences: false
  quoted-strings:
    required: only-when-needed
  truthy:
    allowed-values:
    - >-
      false
    - >-
      true
    - >-  # Allow "on" key name in GHA CI/CD workflow definitions
      on

...