summaryrefslogtreecommitdiff
path: root/.yamllint.yml
blob: 1f9b7d459518cb6fc30e3693ab2350a65e7dd13e (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
---
extends: default

locale: en_US.UTF-8

yaml-files:
  - '*.yaml'
  - '*.yml'
  - '.yamllint'

ignore: |
  api/openapi.yml
  docs/pnpm-lock.yaml
  docs/node_modules/
  internal/configuration/test_resources/config_bad_quoting.yml
  internal/templates/src/pnpm-lock.yaml
  web/pnpm-lock.yaml
  web/node_modules/
  .github/ISSUE_TEMPLATE/feature-request.yml
  .github/ISSUE_TEMPLATE/bug-report.yml
  internal/suites/
rules:
  document-end:
    level: warning
  empty-values:
    level: warning
  indentation:
    spaces: 2
    check-multi-line-strings: true
  line-length:
    max: 120
  octal-values: enable
...