Silence rubocop for multiline chaining
This commit is contained in:
parent
59ea606857
commit
90b4229134
1 changed files with 10 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue