Skip to content

Commit

Permalink
.gitignore: Add /.vendor/
Browse files Browse the repository at this point in the history
In many projects it's common to install gems into .vendor/, not vendor/.
people tend to copy and paste commands from their history. I think it
makes sense to add it to the .gitignore here as well.
  • Loading branch information
bastelfreak committed Jul 28, 2024
1 parent 0e8a851 commit 9aa5e73
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
/spec/fixtures/modules/
/tmp/
/vendor/
/.vendor/
/convert_report.txt
# Rubocop profile builder temporary files
/rubocop/.rubocop.yml
Expand Down
1 change: 1 addition & 0 deletions config_defaults.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ common:
- '/spec/fixtures/modules/*'
- '/tmp/'
- '/vendor/'
- '/.vendor/'
- '/convert_report.txt'
- '/update_report.txt'
- '.DS_Store'
Expand Down

0 comments on commit 9aa5e73

Please sign in to comment.