Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 772 Bytes

yamllint.md

File metadata and controls

46 lines (32 loc) · 772 Bytes
title sidebar_label description sidebar_position
Yamllint
Yamllint
CodeRabbit's guide to Yamllint.
10

Yamllint is a linter for YAML.

Files

Yamllint will run on files with the following extensions:

  • .yaml
  • .yml

Configuration

Yamllint supports the following config files:

  • .yamllint
  • .yamllint.yaml
  • .yamllint.yml

CodeRabbit will use the following settings based on the profile selected if no config file is found:

Chill

extends: relaxed
rules:
  line-length: disable

Assertive

extends: default
rules:
  line-length: disable
  document-start: disable

Links