aboutsummaryrefslogtreecommitdiff
path: root/.rubocop.yml
diff options
context:
space:
mode:
authorMelissa Stone <melissa@puppet.com>2019-01-08 15:43:06 -0800
committerMelissa Stone <melissa@puppet.com>2019-01-08 15:43:06 -0800
commit090a165445c0e7a0d3fd161d43e771e877932052 (patch)
tree28684bd74ec672f786d2f6d8e96fde02de9db2f5 /.rubocop.yml
parent1ff420767cfb06c0b14c9db65ebd306569fa8284 (diff)
downloadpuppet-augeas_core-090a165445c0e7a0d3fd161d43e771e877932052.tar.gz
puppet-augeas_core-090a165445c0e7a0d3fd161d43e771e877932052.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 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.