File: .yamllint

package info (click to toggle)
aiohttp-asyncmdnsresolver 0.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 364 kB
  • sloc: python: 778; makefile: 229; sh: 5
file content (18 lines) | stat: -rw-r--r-- 241 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---

extends: default

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

...