Saltstack Official Chrony Formula
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

.yamllint 952B

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