Saltstack Official FirewallD Formula
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

37 linhas
942B

  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. Any YAML files under directory `.kitchen/`, introduced during local testing
  10. ignore: |
  11. node_modules/
  12. test/**/states/**/*.sls
  13. .kitchen/
  14. yaml-files:
  15. # Default settings
  16. - '*.yaml'
  17. - '*.yml'
  18. - .salt-lint
  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
  31. octal-values:
  32. forbid-implicit-octal: true
  33. forbid-explicit-octal: true