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

.yamllint 418B

12345678910111213141516
  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