summaryrefslogtreecommitdiff
path: root/.rubocop.yml
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2015-07-09 08:39:40 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2015-07-09 08:39:40 -0700
commit8fabdd3fddbd222109976fddb0d38255a9490f1d (patch)
tree05c37181d228a244809572d16e3f2dfe2733fd90 /.rubocop.yml
parent6d427a893b28ee71ddcdbb3a6cd64cd01c7a690f (diff)
downloadffi-yajl-8fabdd3fddbd222109976fddb0d38255a9490f1d.tar.gz
fix lots of cops
and add a few more to be ignored
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index 3d62982..47de329 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -1,9 +1,15 @@
+AbcSize:
+ Enabled: false
AndOr:
Enabled: false
+ClassAndModuleCamelCase:
+ Enabled: false
ClassLength:
Enabled: false
CommentAnnotation:
Enabled: false
+CyclomaticComplexity:
+ Enabled: false
Documentation:
Enabled: false
DoubleNegation:
@@ -20,6 +26,10 @@ LineLength:
Enabled: false
MethodLength:
Enabled: false
+ModuleLength:
+ Enabled: false
+PerceivedComplexity:
+ Enabled: false
PercentLiteralDelimiters:
Enabled: false
RegexpLiteral:
@@ -36,3 +46,7 @@ StringLiterals:
Enabled: false
TrailingComma:
EnforcedStyleForMultiline: comma
+UnusedMethodArgument:
+ Enabled: false
+UnusedBlockArgument:
+ Enabled: false