1 # -*- coding: utf-8 -*-
4 # Extend the `default` configuration provided by `yamllint`
7 # Files to ignore completely
8 # 1. All YAML files under directory `node_modules/`, introduced during the Travis run
9 # 2. Any SLS files under directory `test/`, which are actually state files
10 # 3. Any YAML files under directory `.kitchen/`, introduced during local testing
13 test/**/states/**/*.sls
15 test/**/pillar/**/*.sls
23 # SaltStack Formulas additional settings
29 forbid-in-block-mappings: true
30 forbid-in-flow-mappings: true
32 # Increase from default of `80`
33 # Based on https://github.com/PyCQA/flake8-bugbear#opinionated-warnings (`B950`)
36 forbid-implicit-octal: true
37 forbid-explicit-octal: true