disable a couple of unwise rubocop warnings

bug/bundler_fix
Brent Cook 2017-08-01 14:44:22 -05:00
parent 9c930aad6e
commit 176c54fcae
1 changed files with 8 additions and 0 deletions

View File

@ -36,6 +36,14 @@ Style/Documentation:
Exclude:
- 'modules/**/*'
Style/IndentHeredoc:
Enabled: false
Description: 'We need to leave this disabled for Ruby 2.2 compat, remove in 2018'
Style/GuardClause:
Enabled: false
Description: 'This often introduces bugs in tested code'
Style/Encoding:
Enabled: true
Description: 'We prefer binary to UTF-8.'