aboutsummaryrefslogtreecommitdiff
path: root/.rubocop.yml
diff options
context:
space:
mode:
authorMelissa Stone <melissa@puppet.com>2019-01-08 15:41:32 -0800
committerMelissa Stone <melissa@puppet.com>2019-01-08 15:41:32 -0800
commit4b77469aa9cce6110f95f93f255a2740ec2d2393 (patch)
treeee4f2fca99a1f9b5cf27eb298c967e89d02cd04a /.rubocop.yml
parentc73b2d9cd24f85fcd3d52cc090ba0d1dc02f88b6 (diff)
downloadpuppet-hosts_core-4b77469aa9cce6110f95f93f255a2740ec2d2393.tar.gz
puppet-hosts_core-4b77469aa9cce6110f95f93f255a2740ec2d2393.tar.bz2
(maint) update PDK to 1.8.0; update all templates
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index 403057e..472b609 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -20,6 +20,10 @@ Metrics/LineLength:
Description: People have wide screens, use them.
Max: 200
Enabled: false
+GetText/DecorateString:
+ Description: We don't want to decorate test output.
+ Exclude:
+ - spec/*
RSpec/BeforeAfterAll:
Description: Beware of using after(:all) as it may cause state to leak between tests.
A necessary evil in acceptance testing.