Merge pull request #4862 from commitay/dependency-order

make dependency_order_cop a regular audit
This commit is contained in:
commitay 2018-09-19 07:51:42 +10:00 committed by GitHub
commit 02219f91d1
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 "rubocops/extend/formula_cop"
module RuboCop module RuboCop
module Cop module Cop
module NewFormulaAudit module FormulaAudit
# This cop checks for correct order of `depends_on` in a Formula # This cop checks for correct order of `depends_on` in a Formula
# #
# precedence order: # precedence order:

View File

@ -1,6 +1,6 @@
require "rubocops/dependency_order_cop" require "rubocops/dependency_order_cop"
describe RuboCop::Cop::NewFormulaAudit::DependencyOrder do describe RuboCop::Cop::FormulaAudit::DependencyOrder do
subject(:cop) { described_class.new } subject(:cop) { described_class.new }
context "depends_on" do context "depends_on" do