| 12345678910111213141516171819202122232425262728293031 |
- # This file controls the behavior of Trunk: https://docs.trunk.io/cli
- # To learn more about the format of this file, see https://docs.trunk.io/reference/trunk-yaml
- version: 0.1
- cli:
- version: 1.25.0
- # Many linters and tools depend on runtimes - configure them here. (https://docs.trunk.io/runtimes)
- runtimes:
- enabled:
- - go@1.19.5
- - node@18.12.1
- - python@3.10.8
- # This is the section where you manage your linters. (https://docs.trunk.io/check/configuration)
- lint:
- enabled:
- - trivy@0.37.1
- - checkov@3.2.513
- - git-diff-check
- - markdownlint@0.31.1
- - prettier@2.6.2
- - shellcheck@0.8.0
- - shfmt@3.6.0
- - trivy@0.37.1
- - trufflehog@3.31.3
- - yamllint@1.38.0
- actions:
- disabled:
- - trunk-announce
- - trunk-check-pre-push
- - trunk-fmt-pre-commit
- enabled:
- - trunk-upgrade-available
|