Saltstack Official Syslog-NG Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
418B

  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. ignore: |
  9. node_modules/
  10. rules:
  11. line-length:
  12. # Increase from default of `80`
  13. # Based on https://github.com/PyCQA/flake8-bugbear#opinionated-warnings (`B950`)
  14. max: 88