inherit_from: .rubocop_todo.yml AllCops: TargetRubyVersion: '3.4' NewCops: enable require: - rubocop-rake - rubocop-rspec Layout/LineLength: Max: 300 Exclude: - 'spec/**/*' Layout/MultilineMethodCallIndentation: EnforcedStyle: indented_relative_to_receiver Metrics/AbcSize: Max: 60 Metrics/ClassLength: Max: 300 Metrics/CyclomaticComplexity: Max: 20 Metrics/BlockLength: Max: 100 Metrics/MethodLength: Max: 80 Metrics/ParameterLists: Max: 8 Metrics/PerceivedComplexity: Max: 20 Style/MinMaxComparison: Enabled: false Style/NumericLiterals: Enabled: false RSpec/DescribedClass: Enabled: false RSpec/ExampleLength: Max: 50 RSpec/MultipleExpectations: Enabled: false Style/NumericPredicate: Enabled: false