smugglys/translatomatic

View on GitHub
lib/translatomatic/cli/translate.rb

Summary

Maintainability
A
25 mins
Test Coverage

Complex method Translatomatic::CLI::Translate#string (40.1)
Open

      def string(text, *locales)
        run do
          all_conf = conf.all
          source_locale = conf.get(:source_locale) || Locale.default.to_s
          target_locales = determine_target_locales(locales)
Severity: Minor
Found in lib/translatomatic/cli/translate.rb by flog

Flog calculates the ABC score for methods. The ABC score is based on assignments, branches (method calls), and conditions.

You can read more about ABC metrics or the flog tool

Complex method Translatomatic::CLI::Translate#total_translations (23.7)
Open

      def total_translations(source_files, locales)
        total = 0
        source_files.each do |source|
          property_values = source.properties.values
          texts = property_values.collect { |i| build_text(i, source.locale) }
Severity: Minor
Found in lib/translatomatic/cli/translate.rb by flog

Flog calculates the ABC score for methods. The ABC score is based on assignments, branches (method calls), and conditions.

You can read more about ABC metrics or the flog tool

Complex method Translatomatic::CLI::Translate#translate_file (22.1)
Open

      def translate_file(source, locales, listener)
        file_opts = conf.all(for_file: source.path)
        target_locales = determine_target_locales(locales, source)
        ft_options = file_opts.merge(listener: listener)
        ft = Translatomatic::FileTranslator.new(ft_options)
Severity: Minor
Found in lib/translatomatic/cli/translate.rb by flog

Flog calculates the ABC score for methods. The ABC score is based on assignments, branches (method calls), and conditions.

You can read more about ABC metrics or the flog tool

Method load_source_files has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

      def load_source_files(file)
        source_files = []
        files = parse_list(file, conf.get(:source_files))
        files.each do |path|
          raise t('file.not_found', file: path) unless File.exist?(path)
Severity: Minor
Found in lib/translatomatic/cli/translate.rb - About 25 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