From 85e645faaaf0b17ee6a867d0dcd9fe3286501022 Mon Sep 17 00:00:00 2001 From: Dan Kubb Date: Mon, 22 Jul 2013 00:37:53 -0700 Subject: [PATCH] Fix rubocop configuration to ignore vendored code better --- config/rubocop.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/config/rubocop.yml b/config/rubocop.yml index af82f0cb..9f3d5100 100644 --- a/config/rubocop.yml +++ b/config/rubocop.yml @@ -1,8 +1,11 @@ AllCops: Includes: - '../**/*.rake' + - 'Gemfile' + - 'Gemfile.devtools' Excludes: - - '../vendor/**' + - '**/vendor/**' + - '**/benchmarks/**' # Avoid parameter lists longer than five parameters. ParameterLists: