ronin-rb/ronin-recon

View on GitHub

Showing 24 of 30 total issues

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

          def load_workers
            @workers = Ronin::Recon::Workers.load(@config.workers)

            unless @worker_files.empty?
              @worker_files.each do |path|
Severity: Minor
Found in lib/ronin/recon/cli/commands/run.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

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

      def self.outputs(*value_classes)
        unless value_classes.empty?
          @outputs = value_classes
        else
          @outputs || if superclass < Worker
Severity: Minor
Found in lib/ronin/recon/worker.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

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

      def self.accepts(*value_classes)
        unless value_classes.empty?
          @accepts = value_classes
        else
          @accepts || if superclass < Worker
Severity: Minor
Found in lib/ronin/recon/worker.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

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

      def self.concurrency(new_concurrency=nil)
        if new_concurrency
          @concurrency = new_concurrency
        else
          @concurrency || if superclass < Worker
Severity: Minor
Found in lib/ronin/recon/worker.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