summaryrefslogtreecommitdiff
path: root/.rubocop.yml
diff options
context:
space:
mode:
authorVictor Koronen <koronen@kth.se>2015-08-22 13:56:27 +0200
committerVictor Koronen <koronen@kth.se>2015-08-22 13:59:55 +0200
commited7d822fc6b0c864751e9ee01a0ba491c41a1aac (patch)
tree5291cf69e55d3ef353b5f989d8933c00b6966345 /.rubocop.yml
parentbafe0bd2b4584bf2d24737639fa6dc14273a547b (diff)
downloadbundler-ed7d822fc6b0c864751e9ee01a0ba491c41a1aac.tar.gz
Disable Lint/UnusedMethodArgument
We don't agree with this rule. See discussion in <https://github.com/bundler/bundler/pull/3922>.
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index 269c8c519a..5e60f77b23 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -16,6 +16,9 @@ Lint/AssignmentInCondition:
Lint/EndAlignment:
AlignWith: variable
+Lint/UnusedMethodArgument:
+ Enabled: false
+
# Style
Style/AccessModifierIndentation: