From 5e63f7883605ea6849573a8aff9c828833880374 Mon Sep 17 00:00:00 2001 From: TOBY Date: Wed, 9 Jul 2014 10:18:04 +0900 Subject: [PATCH] Blacklist Vagrantfile like Rakefile in FileName cop See Also: * ref #878 --- config/default.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/default.yml b/config/default.yml index f6d3963a4984..450c93e87137 100644 --- a/config/default.yml +++ b/config/default.yml @@ -11,6 +11,7 @@ AllCops: Include: - '**/*.gemspec' - '**/Rakefile' + - '**/Vagrantfile' Exclude: - 'vendor/**/*' # By default, the rails cops are not run. Override in project or home @@ -208,6 +209,7 @@ Style/FileName: - '**/Rakefile' - '**/Gemfile' - '**/Capfile' + - '**/Vagrantfile' # Checks use of for or each in multiline loops. Style/For: