Saltstack Official Apache 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.

.salt-lint 1.3KB

1234567891011121314151617181920212223242526272829303132
  1. # -*- coding: utf-8 -*-
  2. # vim: ft=yaml
  3. ---
  4. exclude_paths: []
  5. rules:
  6. 203: # Most files should not contain tabs
  7. ignore: |
  8. apache/files/Debian/apache-2.4.config.jinja
  9. apache/files/Debian/mpm/mpm_event.conf.jinja
  10. apache/files/Debian/mpm/mpm_prefork.conf.jinja
  11. apache/files/Debian/mpm/mpm_worker.conf.jinja
  12. apache/files/Debian/ssl.conf.jinja
  13. apache/files/FreeBSD/mod_cgi.conf.jinja
  14. apache/files/FreeBSD/mod_ssl.conf.jinja
  15. apache/files/RedHat/conf.modules.d/00-mpm.conf.jinja
  16. apache/files/RedHat/modsecurity.conf.jinja
  17. apache/logrotate.sls
  18. 204: # Lines should be no longer that 160 chars
  19. ignore: |
  20. apache/files/Debian/ssl.conf.jinja
  21. apache/files/FreeBSD/mod_ssl.conf.jinja
  22. apache/files/ssl/tls-defaults.conf.jinja
  23. test/salt/pillar/modules.sls
  24. skip_list:
  25. # Using `salt-lint` for linting other files as well, such as Jinja macros/templates
  26. - 205 # Use ".sls" as a Salt State file extension
  27. # Skipping `207` and `208` because `210` is sufficient, at least for the time-being
  28. # I.e. Allows 3-digit unquoted codes to still be used, such as `644` and `755`
  29. - 207 # File modes should always be encapsulated in quotation marks
  30. - 208 # File modes should always contain a leading zero
  31. tags: []
  32. verbosity: 1