Add long report class to .rubocop_todo.yml

Long classes are a problem that would be good to resolve one day. But it's hard to resolve with the current reports framework.
This commit is contained in:
David Cook
2023-02-09 10:42:00 +11:00
committed by Konrad
parent ee7668e713
commit cc54e2e6c7
2 changed files with 1 additions and 2 deletions

View File

@@ -234,6 +234,7 @@ Metrics/ClassLength:
- 'lib/reporting/reports/enterprise_fee_summary/enterprise_fees_with_tax_report_by_order.rb'
- 'lib/reporting/reports/enterprise_fee_summary/scope.rb'
- 'lib/reporting/reports/xero_invoices/base.rb'
- 'lib/reporting/reports/enterprise_fee_summary/enterprise_fees_with_tax_report_by_producer.rb'
# Offense count: 34
# Configuration parameters: AllowedMethods, AllowedPatterns, Max.

View File

@@ -1,6 +1,5 @@
# frozen_string_literal: true
# rubocop:disable Metrics/ClassLength
module Reporting
module Reports
module EnterpriseFeeSummary
@@ -355,4 +354,3 @@ module Reporting
end
end
end
# rubocop:enable Metrics/ClassLength