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

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