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
14 test/**/states/**/*.sls
16 test/**/pillar/**/*.sls
24 # SaltStack Formulas additional settings
30 forbid-in-block-mappings: true
31 forbid-in-flow-mappings: true
33 # Increase from default of `80`
34 # Based on https://github.com/PyCQA/flake8-bugbear#opinionated-warnings (`B950`)
37 forbid-implicit-octal: true
38 forbid-explicit-octal: true