summaryrefslogtreecommitdiff
path: root/.rubocop.yml
diff options
context:
space:
mode:
authorMichael Herold <michael.j.herold@gmail.com>2014-08-23 10:20:35 -0500
committerMichael Herold <michael.j.herold@gmail.com>2014-08-23 10:23:33 -0500
commit7ca3fa43342fb61b24cf8f3f45d80a06d0b31254 (patch)
tree9ed0326a58cc49c2de758fb2f8c14bae7196da38 /.rubocop.yml
parent270e948d08bf2b37f6efc5c9ebaf59704d83b985 (diff)
downloadhashie-7ca3fa43342fb61b24cf8f3f45d80a06d0b31254.tar.gz
Organize Rubocop rules
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml28
1 files changed, 14 insertions, 14 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index 23fea48..2a697ac 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -1,37 +1,37 @@
AllCops:
Exclude:
- - vendor/**
- - bin/**
- .bundle/**
+ - bin/**
+ - vendor/**
-LineLength:
- Enabled: false
-
-MethodLength:
+Style/CaseEquality:
Enabled: false
-ClassLength:
+Style/Documentation:
+ # don't require classes to be documented
Enabled: false
-Documentation:
- # don't require classes to be documented
+Style/DoubleNegation:
Enabled: false
-Encoding:
+Style/Encoding:
# no need to always specify encoding
Enabled: false
-Lambda:
+Style/Lambda:
# TODO: replace all lambda with -> or Proc
Enabled: false
-CyclomaticComplexity:
+Metrics/ClassLength:
+ Enabled: false
+
+Metrics/CyclomaticComplexity:
Enabled: false
-DoubleNegation:
+Metrics/LineLength:
Enabled: false
-CaseEquality:
+Metrics/MethodLength:
Enabled: false
Metrics/PerceivedComplexity: