aboutsummaryrefslogtreecommitdiff
path: root/.rubocop.yml
diff options
context:
space:
mode:
authorJosh Cooper <josh@puppet.com>2018-07-09 20:43:08 -0700
committerJosh Cooper <josh@puppet.com>2018-07-10 11:03:14 -0700
commitfc2256e48c4afcf70486b439f8a85ef31243830b (patch)
tree08865217fa6d4a5f1245a6211932eb9114c69be4 /.rubocop.yml
parenteff6ab2fc2c7014cba546fef9ae9d1f8f0592297 (diff)
downloadpuppet-hosts_core-fc2256e48c4afcf70486b439f8a85ef31243830b.tar.gz
puppet-hosts_core-fc2256e48c4afcf70486b439f8a85ef31243830b.tar.bz2
Disable Metrics/LineLength check
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml1
1 files changed, 1 insertions, 0 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index faa6470..affaf1d 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -19,6 +19,7 @@ AllCops:
Metrics/LineLength:
Description: People have wide screens, use them.
Max: 200
+ Enabled: false
RSpec/BeforeAfterAll:
Description: Beware of using after(:all) as it may cause state to leak between tests.
A necessary evil in acceptance testing.