Saltstack Official PHP Formula
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

17 行
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