2019-08-06 21:57:50 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vim: ft=yaml
|
|
|
|
---
|
|
|
|
# Extend the `default` configuration provided by `yamllint`
|
2021-03-05 19:34:45 +01:00
|
|
|
extends: 'default'
|
2019-08-06 21:57:50 +02:00
|
|
|
|
|
|
|
# Files to ignore completely
|
2021-07-18 20:04:28 +02:00
|
|
|
# 1. All YAML files under directory `.bundle/`, introduced if gems are installed locally
|
|
|
|
# 2. All YAML files under directory `.cache/`, introduced during the CI run
|
|
|
|
# 3. All YAML files under directory `.git/`
|
|
|
|
# 4. All YAML files under directory `node_modules/`, introduced during the CI run
|
|
|
|
# 5. Any SLS files under directory `test/`, which are actually state files
|
|
|
|
# 6. Any YAML files under directory `.kitchen/`, introduced during local testing
|
|
|
|
# 7. `kitchen.vagrant.yml`, which contains Embedded Ruby (ERB) template syntax
|
2019-08-06 21:57:50 +02:00
|
|
|
ignore: |
|
2021-06-24 15:55:09 +02:00
|
|
|
.bundle/
|
2020-12-16 07:39:08 +01:00
|
|
|
.cache/
|
2021-03-05 19:34:45 +01:00
|
|
|
.git/
|
2019-08-06 21:57:50 +02:00
|
|
|
node_modules/
|
2020-10-02 23:34:13 +02:00
|
|
|
test/**/states/**/*.sls
|
2019-10-07 20:35:02 +02:00
|
|
|
.kitchen/
|
2021-04-05 19:21:18 +02:00
|
|
|
kitchen.vagrant.yml
|
2020-05-14 01:27:23 +02:00
|
|
|
prometheus/osfamilymap.yaml
|
2021-03-07 23:03:38 +01:00
|
|
|
test/salt/pillar/repo.sls
|
2019-09-10 06:57:10 +02:00
|
|
|
|
|
|
|
yaml-files:
|
|
|
|
# Default settings
|
|
|
|
- '*.yaml'
|
|
|
|
- '*.yml'
|
2019-10-08 17:38:51 +02:00
|
|
|
- .salt-lint
|
2019-09-10 06:57:10 +02:00
|
|
|
- .yamllint
|
|
|
|
# SaltStack Formulas additional settings
|
|
|
|
- '*.example'
|
2020-10-02 23:34:13 +02:00
|
|
|
- test/**/*.sls
|
2019-08-06 21:57:50 +02:00
|
|
|
|
|
|
|
rules:
|
2019-09-10 06:57:10 +02:00
|
|
|
empty-values:
|
|
|
|
forbid-in-block-mappings: true
|
|
|
|
forbid-in-flow-mappings: true
|
2019-08-06 21:57:50 +02:00
|
|
|
line-length:
|
|
|
|
# Increase from default of `80`
|
|
|
|
# Based on https://github.com/PyCQA/flake8-bugbear#opinionated-warnings (`B950`)
|
2020-10-02 23:34:13 +02:00
|
|
|
max: 88
|
2019-10-07 20:35:02 +02:00
|
|
|
octal-values:
|
|
|
|
forbid-implicit-octal: true
|
|
|
|
forbid-explicit-octal: true
|