.yamllint.yml 850 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ---
  2. yaml-files:
  3. - '*.yaml'
  4. - '*.yml'
  5. - '.yamllint'
  6. - 'collectors/python.d.plugin/*.conf'
  7. - 'collectors/python.d.plugin/*/*.conf'
  8. ignore: |
  9. mqtt_websockets/
  10. packaging/makeself/tmp/
  11. rules:
  12. braces: enable
  13. brackets: enable
  14. colons: enable
  15. commas: enable
  16. comments: disable
  17. comments-indentation: disable
  18. document-end: disable
  19. document-start: disable
  20. empty-lines: enable
  21. empty-values: enable
  22. hyphens: enable
  23. indentation: enable
  24. line-length:
  25. max: 150
  26. level: warning
  27. allow-non-breakable-words: true
  28. allow-non-breakable-inline-mappings: true
  29. key-duplicates: enable
  30. key-ordering: disable
  31. new-line-at-end-of-file: enable
  32. new-lines: enable
  33. octal-values: enable
  34. quoted-strings: disable
  35. trailing-spaces: enable
  36. truthy:
  37. check-keys: false
  38. allowed-values: ["true", "false", "yes", "no"]