# Generated by alef e2e — do not edit.
AllCops:
NewCops: enable
TargetRubyVersion: 3.2
SuggestExtensions: false
plugins:
- rubocop-rspec
# --- Justified suppressions for generated test code ---
# Generated tests are verbose by nature (setup + multiple assertions).
Metrics/BlockLength:
Enabled: false
Metrics/MethodLength:
Enabled: false
Layout/LineLength:
Enabled: false
# Generated tests use multiple assertions per example for thorough verification.
RSpec/MultipleExpectations:
Enabled: false
RSpec/ExampleLength:
Enabled: false
# Generated tests describe categories as strings, not classes.
RSpec/DescribeClass:
Enabled: false
# Fixture-driven tests may produce identical assertion bodies for different inputs.
RSpec/RepeatedExample:
Enabled: false
# Error-handling tests use bare raise_error (exception type not known at generation time).
RSpec/UnspecifiedException:
Enabled: false