Skip to content

Commit e48275d

Browse files
Fix vendor exclusion pattern to match vendor at any depth
Change vendor/**/* to **/vendor/**/* to properly exclude vendor directories in subdirectories like react_on_rails/vendor/bundle/ and react_on_rails_pro/vendor/bundle/ where CI installs gems. Co-authored-by: Ihab Adham <ihabadham@users.noreply.github.com>
1 parent 3701703 commit e48275d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ AllCops:
2727
- 'node_modules/**/*'
2828
- 'spec/fixtures/**/*'
2929
- 'spec/react_on_rails/dummy-for-generators/**/*'
30-
- 'vendor/**/*'
30+
- '**/vendor/**/*'
3131

3232
Naming/FileName:
3333
Exclude:

0 commit comments

Comments
 (0)