aboutsummaryrefslogtreecommitdiff
path: root/.rubocop.yml
diff options
context:
space:
mode:
authorJosh Cooper <josh@puppet.com>2019-01-08 16:10:13 -0800
committerGitHub <noreply@github.com>2019-01-08 16:10:13 -0800
commit647cd360b251d3e0eeb04674c03ff01652c12ef4 (patch)
treed89104ffe6b479f3b4a6ce2853ba05180bdea211 /.rubocop.yml
parent1ff420767cfb06c0b14c9db65ebd306569fa8284 (diff)
parente4075c634196280930aeea295563d393b6f38e5c (diff)
downloadpuppet-augeas_core-647cd360b251d3e0eeb04674c03ff01652c12ef4.tar.gz
puppet-augeas_core-647cd360b251d3e0eeb04674c03ff01652c12ef4.tar.bz2
Merge pull request #17 from melissa/maint/master/update-pdk-1.8.0-templates
(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 8586548..1dcf48d 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.