Merge pull request #4109 from commitay/components_redundancy_cop

components_redundancy_cop: make non-strict
This commit is contained in:
Mike McQuaid 2018-04-25 08:32:35 +01:00 committed by GitHub
commit 9089ea4df3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ require_relative "./extend/formula_cop"
module RuboCop
module Cop
module FormulaAuditStrict
module FormulaAudit
# This cop checks if redundant components are present and other component errors
#
# - `url|checksum|mirror` should be inside `stable` block

View File

@ -1,6 +1,6 @@
require_relative "../../rubocops/components_redundancy_cop"
describe RuboCop::Cop::FormulaAuditStrict::ComponentsRedundancy do
describe RuboCop::Cop::FormulaAudit::ComponentsRedundancy do
subject(:cop) { described_class.new }
context "When auditing formula components common errors" do