Showing 2 of 2 total issues
Method define_lazy_association
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
Open
def define_lazy_association(type, name, options, block)
lazy_relationship_option_keys = %i[load_for loader]
real_relationship_options = options.except(*lazy_relationship_option_keys)
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Missing magic comment # frozen_string_literal: true
. Open
Open
appraise "ams-0.10.0.rc4" do
- Read upRead up
- Exclude checks
This cop is designed to help upgrade to Ruby 3.0. It will add the
comment # frozen_string_literal: true
to the top of files to
enable frozen string literals. Frozen string literals will be default
in Ruby 3.0. The comment will be added below a shebang and encoding
comment. The frozen string literal comment is only valid in Ruby 2.3+.