app/helpers/proposals_helper.rb
Method datespan_header
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
Open
def datespan_header(start_date, end_date)
if start_date && end_date
# month span
if start_date.mday == 1 && end_date == start_date + 1.month
month_name = I18n.t('date.abbr_month_names')[start_date.month]
- 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
Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping. Open
Open
month_name = I18n.t('date.abbr_month_names')[start_date.month]
- Read upRead up
- Exclude checks
Checks if uses of quotes match the configured preference.
Example: EnforcedStyle: single_quotes (default)
# bad
"No special symbols"
"No string interpolation"
"Just text"
# good
'No special symbols'
'No string interpolation'
'Just text'
"Wait! What's #{this}!"
Example: EnforcedStyle: double_quotes
# bad
'Just some text'
'No special chars or interpolation'
# good
"Just some text"
"No special chars or interpolation"
"Every string in #{project} uses double_quotes"