From cddc40fef4af06a3e4c46636726af867f474ea43 Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Thu, 12 May 2016 14:14:44 -0500 Subject: [PATCH] rubocop: exclude test and features files that fail --- .rubocop.yml | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index 2aca1299..7bf38d38 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -76,7 +76,48 @@ AllCops: - lib/jekyll/utils.rb - lib/jekyll/version.rb - lib/jekyll.rb + - features/step_definitions.rb + - features/support/formatter.rb + - features/support/helpers.rb + - test/helper.rb + - test/simplecov_custom_profile.rb + - test/test_ansi.rb + - test/test_cleaner.rb + - test/test_coffeescript.rb + - test/test_collections.rb + - test/test_command.rb + - test/test_commands_serve.rb + - test/test_configuration.rb + - test/test_convertible.rb + - test/test_doctor_command.rb + - test/test_document.rb + - test/test_entry_filter.rb + - test/test_excerpt.rb + - test/test_filters.rb + - test/test_front_matter_defaults.rb + - test/test_generated_site.rb + - test/test_kramdown.rb + - test/test_layout_reader.rb + - test/test_liquid_extensions.rb + - test/test_liquid_renderer.rb + - test/test_log_adapter.rb + - test/test_new_command.rb + - test/test_page.rb + - test/test_path_sanitization.rb + - test/test_plugin_manager.rb + - test/test_rdiscount.rb + - test/test_redcarpet.rb + - test/test_regenerator.rb + - test/test_related_posts.rb + - test/test_sass.rb + - test/test_site.rb + - test/test_static_file.rb + - test/test_tags.rb + - test/test_theme.rb + - test/test_url.rb + - test/test_utils.rb - bin/**/* + - benchmark/**/* - script/**/* - vendor/**/* Lint/EndAlignment: