Saltstack Official Salt Formula
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

40 lines
1.0KB

  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. # 4. All YAML files heavily reliant on Jinja; these can be tackled in a subsequent PR
  11. ignore: |
  12. node_modules/
  13. test/**/states/**/*.sls
  14. .kitchen/
  15. salt/osfamilymap.yaml
  16. salt/osmap.yaml
  17. yaml-files:
  18. # Default settings
  19. - '*.yaml'
  20. - '*.yml'
  21. - .salt-lint
  22. - .yamllint
  23. # SaltStack Formulas additional settings
  24. - '*.example'
  25. - test/**/*.sls
  26. rules:
  27. empty-values:
  28. forbid-in-block-mappings: true
  29. forbid-in-flow-mappings: true
  30. line-length:
  31. # Increase from default of `80`
  32. # Based on https://github.com/PyCQA/flake8-bugbear#opinionated-warnings (`B950`)
  33. max: 88
  34. octal-values:
  35. forbid-implicit-octal: true
  36. forbid-explicit-octal: true