Rubocop ignore vendor/*.

This commit is contained in:
Andy Brody 2017-07-05 03:25:01 -04:00
parent 28d60a0a9a
commit 03b6285a5b
2 changed files with 4 additions and 0 deletions

View File

@ -154,6 +154,9 @@ Layout/EmptyLinesAroundMethodBody:
Layout/EmptyLinesAroundModuleBody:
Enabled: false
Layout/EmptyLinesAroundExceptionHandlingKeywords:
Enabled: false
# Offense count: 31
# Configuration parameters: EnforcedStyle, SupportedStyles.
Style/Encoding:

View File

@ -5,3 +5,4 @@ inherit_from:
AllCops:
Exclude:
- 'tmp/*.rb'
- 'vendor/**/*'