https://github.com/wikimedia/operations-puppet
Raw File
Tip revision: 6598d86199c9037f0bc2f14abcc9d3fc6c0f7666 authored by joal on 27 October 2015, 11:32:17 UTC
Update camus runs
Tip revision: 6598d86
.puppet-lint.rc
# We still use the 2.6 way of referencing variables
# 2.8 will requires $::globalname. Skip for now.
--no-variable_scope-check

# We really like nesting classes:
--no-nested_classes_or_defines-check

# Lot of long lines (ssh keys for example).
--no-80chars-check

# Misc rules, some of them might use to be enabled later.
--no-autoloader_layout-check
--no-inherits_across_namespaces-check
--no-double_quoted_strings-check
--no-unquoted_file_mode-check
--no-ensure_first_param-check
--no-unquoted_resource_title-check
--no-arrow_alignment-check
--no-puppet_url_without_modules-check

# We dont have much documentation yet:
--no-documentation-check

# Variables should be enclosed in {}
# --no-variables_not_enclosed-check

# We use dash in class and variables.
--no-names_containing_dash-check
--no-variable_contains_dash-check

# Test is only relevant for Puppet <= 2.6.2.
--no-class_inherits_from_params_class-check
back to top