config/chefstyle.yml in lcgstyle-0.0.7 vs config/chefstyle.yml in lcgstyle-0.0.8
- old
+ new
@@ -97,11 +97,11 @@
# We also decorate Exceptions a lot
Lint/RescueException:
Enabled: false
# we have lots of not-insecure uses of eval
-Lint/Eval:
+Security/Eval:
Enabled: false
# disabling this will make it easier to stage chefstyle rollouts
Lint/UnneededDisable:
Enabled: false
@@ -520,5 +520,12 @@
# This didn't quite do what we need
Style/MultilineArrayBraceLayout:
Enabled: false
+# This rule isn't smart enough to figure out accessors vs. things that set stuff on the system (e.g. set_member method in group providers)
+Style/AccessorMethodName:
+ Enabled: false
+
+# Perl backrefs are just fine and the alternative is a lot of typing.
+Style/PerlBackrefs:
+ Enabled: false