From 9aa5e73d5f5885f64888b5ac5da94d0e0013974b Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Sun, 28 Jul 2024 14:21:43 +0200 Subject: [PATCH] .gitignore: Add /.vendor/ 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. --- .gitignore | 1 + config_defaults.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 1bf6549e..e44bdbb7 100644 --- a/.gitignore +++ b/.gitignore @@ -20,6 +20,7 @@ /spec/fixtures/modules/ /tmp/ /vendor/ +/.vendor/ /convert_report.txt # Rubocop profile builder temporary files /rubocop/.rubocop.yml diff --git a/config_defaults.yml b/config_defaults.yml index 5aaf992c..87cfb110 100644 --- a/config_defaults.yml +++ b/config_defaults.yml @@ -31,6 +31,7 @@ common: - '/spec/fixtures/modules/*' - '/tmp/' - '/vendor/' + - '/.vendor/' - '/convert_report.txt' - '/update_report.txt' - '.DS_Store'