Saltstack Official Salt Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 line
443B

  1. # -*- coding: utf-8 -*-
  2. # vim: ft=yaml
  3. ---
  4. # Extend the `default` configuration provided by `yamllint`
  5. extends: 'default'
  6. rules:
  7. empty-values:
  8. forbid-in-block-mappings: true
  9. forbid-in-flow-mappings: true
  10. line-length:
  11. # Increase from default of `80`
  12. # Based on https://github.com/PyCQA/flake8-bugbear#opinionated-warnings (`B950`)
  13. max: 88
  14. octal-values:
  15. forbid-implicit-octal: true
  16. forbid-explicit-octal: true