Saltstack Official Salt Formula
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

34 líneas
882B

  1. # -*- coding: utf-8 -*-
  2. # vim: ft=yaml
  3. ---
  4. # Extend the `default` configuration provided by `yamllint`
  5. extends: default
  6. # Files to ignore completely
  7. # 1. All YAML files under directory `node_modules/`, introduced during the Travis run
  8. # 2. Any SLS files under directory `test/`, which are actually state files
  9. # 3. All YAML files heavily reliant on Jinja; these can be tackled in a subsequent PR
  10. ignore: |
  11. node_modules/
  12. test/**/states/**/*.sls
  13. salt/osfamilymap.yaml
  14. salt/osmap.yaml
  15. yaml-files:
  16. # Default settings
  17. - '*.yaml'
  18. - '*.yml'
  19. - .yamllint
  20. # SaltStack Formulas additional settings
  21. - '*.example'
  22. - test/**/*.sls
  23. rules:
  24. empty-values:
  25. forbid-in-block-mappings: true
  26. forbid-in-flow-mappings: true
  27. line-length:
  28. # Increase from default of `80`
  29. # Based on https://github.com/PyCQA/flake8-bugbear#opinionated-warnings (`B950`)
  30. max: 88