Exclude bundle directory when running rubocop (#5016)
* Exclude bundle directory when running rubocop * Include the default excludes as well
This commit is contained in:
parent
5b76b9e888
commit
4b00fdbc5b
|
@ -1,6 +1,10 @@
|
|||
AllCops:
|
||||
TargetRubyVersion: 2.4
|
||||
DisabledByDefault: true
|
||||
Exclude:
|
||||
- 'bundle/**/*'
|
||||
- 'vendor/**/*'
|
||||
- 'node_modules/**/*'
|
||||
|
||||
# Prefer &&/|| over and/or.
|
||||
Style/AndOr:
|
||||
|
|
Loading…
Reference in New Issue