yujinakayama/transpec

View on GitHub
lib/transpec/cli/option_parser.rb

Summary

Maintainability
B
5 hrs
Test Coverage

Method descriptions has 79 lines of code (exceeds 25 allowed). Consider refactoring.
Open

      def descriptions # rubocop:disable MethodLength
        @descriptions ||= {
          '-f' => [
            'Force processing even if the current Git repository is not',
            'clean.'
Severity: Major
Found in lib/transpec/cli/option_parser.rb - About 3 hrs to fix

    Method setup_parser has 44 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

          def setup_parser # rubocop:disable MethodLength
            @parser = create_parser
    
            define_option('-f', '--force') do
              config.forced = true
    Severity: Minor
    Found in lib/transpec/cli/option_parser.rb - About 1 hr to fix

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

            def configure_boolean_matcher(type)
              unless VALID_BOOLEAN_MATCHER_TYPES.include?(type)
                types = VALID_BOOLEAN_MATCHER_TYPES.map(&:inspect).join(', ')
                fail ArgumentError, "Boolean matcher type must be any of #{types}"
              end
      Severity: Minor
      Found in lib/transpec/cli/option_parser.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