Silence rubocop for multiline chaining

This commit is contained in:
Markus Schirp 2013-11-20 20:15:24 +01:00
parent 59ea606857
commit 90b4229134

View file

@ -1,3 +1,9 @@
# General note about rubocop.
# It does NOT allow to silence a specific rule violation.
# For that reason I sometimes have to disable a whole cop where
# I just tried to whitelist a specific occurence.
AllCops:
Includes:
- '../**/*.rake'
@ -87,3 +93,7 @@ AndOr:
# I like my raise
SignalException:
Enabled: false
# I need to chain optparse builder, else it is more ugly
MultilineBlockChain:
Enabled: false