Exclude bundle directory when running rubocop (#5016)

* Exclude bundle directory when running rubocop

* Include the default excludes as well
This commit is contained in:
David Taylor 2017-08-01 17:47:09 +01:00 committed by Sam
parent 5b76b9e888
commit 4b00fdbc5b
1 changed files with 4 additions and 0 deletions

View File

@ -1,6 +1,10 @@
AllCops:
TargetRubyVersion: 2.4
DisabledByDefault: true
Exclude:
- 'bundle/**/*'
- 'vendor/**/*'
- 'node_modules/**/*'
# Prefer &&/|| over and/or.
Style/AndOr: