experteer/codeqa

View on GitHub

Showing 8 of 13 total issues

Method compile has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
Open

      def compile(s)
        enc = s.encoding
        raise ArgumentError, "#{enc} is not ASCII compatible" if enc.dummy?
        s = s.b # see String#b
        enc = detect_magic_comment(s) || enc
Severity: Minor
Found in lib/codeqa/utils/erb_sanitizer.rb - About 3 hrs 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 compile has 50 lines of code (exceeds 25 allowed). Consider refactoring.
Open

      def compile(s)
        enc = s.encoding
        raise ArgumentError, "#{enc} is not ASCII compatible" if enc.dummy?
        s = s.b # see String#b
        enc = detect_magic_comment(s) || enc
Severity: Minor
Found in lib/codeqa/utils/erb_sanitizer.rb - About 2 hrs to fix

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

        def run
          return @results unless @results.empty?
          @results = @@registered_checkers.map do |checker_klass|
            next unless checker_klass.check?(sourcefile)
            checker = checker_klass.new(sourcefile)
    Severity: Minor
    Found in lib/codeqa/runner.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 check has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

          def check
            return unless self.class.rubocop?
            with_existing_file do |filename|
              args = config_args << filename
              success, raw_json = capture do
    Severity: Minor
    Found in lib/codeqa/checkers/rubocop_full.rb - About 55 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

    Method check has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

        def check(filename, options={})
          options = { :silent_success => false, :silent => false }.merge(options)
          runner = runner(filename)
          if runner.success?
            $stdout.puts(runner.display_result) unless options[:silent_success] || options[:silent]
    Severity: Minor
    Found in lib/codeqa.rb - About 55 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

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

        def generate_dot_codeqa
          dot_path.mkdir unless dot_path.exist?
          dot_path('hooks').mkdir unless dot_path('hooks').exist?
          FileUtils.cp(template_path('base_hook.rb'), dot_path('hooks', 'base.rb')) unless dot_path('hooks', 'base.rb').exist?
          FileUtils.cp(template_path('git_hook.rb'), dot_path('git_hook.rb')) unless  dot_path('git_hook.rb').exist?
    Severity: Minor
    Found in lib/codeqa/installer.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

    Method check has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

          def check
            return unless self.class.nokogiri?
            doc = Nokogiri::XML "<special>#{stripped_html}</special>"
    
            doc.errors.delete_if{ |e| e.message =~ REMOVED_NOKOGIRI_ERRORS }
    Severity: Minor
    Found in lib/codeqa/checkers/html_validator.rb - About 35 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

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

        def register_checkers
          Codeqa::Runner.reset_checkers
          configuration.enabled_checker.each do |checker|
            begin
              checker_klass = Codeqa::Checkers.const_get(checker)
    Severity: Minor
    Found in lib/codeqa.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

    Severity
    Category
    Status
    Source
    Language