https://github.com/wikimedia/operations-puppet
Raw File
Tip revision: dd4a48de691c0f62ee9fb1b99a70ba34b7357368 authored by andrewbogott on 17 March 2015, 18:25:02 UTC
Switch designate back to using the proper sql server.
Tip revision: dd4a48d
.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

# Anyone as a different indentation preference.
--no-hard_tabs-check
--no-2sp_soft_tabs-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

# "true" and "false" are everywhere.
--no-quoted_booleans-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

# FIXME Following test cause a stacktrace ;-(
--no-ensure_not_symlink_target-check
back to top