summaryrefslogtreecommitdiff
path: root/.rubocop.yml
diff options
context:
space:
mode:
authorTim Meusel <tim@bastelfreak.de>2016-05-26 10:20:54 +0200
committerTim Meusel <tim@bastelfreak.de>2016-05-26 10:20:54 +0200
commit4c4abb1ba78af40e897e70dcf6c3693fab8e93b2 (patch)
tree4bfcca31b7db62ce385492b4692e0f4b43666045 /.rubocop.yml
parent9c9c140ce32395afcf8d9b5d8e4f92e4e3bb3007 (diff)
modulesync 0.6.3
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index 819bbd8..364b022 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -1,8 +1,11 @@
+require: rubocop-rspec
AllCops:
+ TargetRubyVersion: 1.9
Include:
- ./**/*.rb
Exclude:
- vendor/**/*
+ - .vendor/**/*
- pkg/**/*
- spec/fixtures/**/*
@@ -64,3 +67,13 @@ Style/BlockDelimiters:
Style/MultilineBlockLayout:
Enabled: False
+
+# Rspec
+
+# We don't use rspec in this way
+RSpec/DescribeClass:
+ Enabled: False
+
+# Example length is not necessarily an indicator of code quality
+RSpec/ExampleLength:
+ Enabled: False