Saltstack Official Salt Formula
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

39 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. - .yamllint
  22. # SaltStack Formulas additional settings
  23. - '*.example'
  24. - test/**/*.sls
  25. rules:
  26. empty-values:
  27. forbid-in-block-mappings: true
  28. forbid-in-flow-mappings: true
  29. line-length:
  30. # Increase from default of `80`
  31. # Based on https://github.com/PyCQA/flake8-bugbear#opinionated-warnings (`B950`)
  32. max: 88
  33. octal-values:
  34. forbid-implicit-octal: true
  35. forbid-explicit-octal: true