glebm/i18n-tasks

View on GitHub
lib/i18n/tasks/configuration.rb

Summary

Maintainability
A
1 hr
Test Coverage
A
91%

Method file_config has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

  def file_config
    file   = @config_override || CONFIG_FILES.detect { |f| File.exist?(f) }
    # rubocop:disable Security/Eval
    config = file && YAML.load(eval(Erubi::Engine.new(File.read(file, encoding: 'UTF-8')).src))
    # rubocop:enable Security/Eval
Severity: Minor
Found in lib/i18n/tasks/configuration.rb - About 1 hr to fix

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

Method to_hash_from_indifferent has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

  def to_hash_from_indifferent(value)
    case value
    when Hash
      value.stringify_keys.to_hash.tap do |h|
        h.each { |k, v| h[k] = to_hash_from_indifferent(v) if v.is_a?(Hash) || v.is_a?(Array) }
Severity: Minor
Found in lib/i18n/tasks/configuration.rb - About 45 mins to fix

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

There are no issues that match your filters.

Category
Status