Rescla/range-ts

View on GitHub

Showing 8 of 20 total issues

Function exports has 65 lines of code (exceeds 25 allowed). Consider refactoring.
Open

module.exports = function (config) {
  config.set({
    basePath: "../dist/karma",
    frameworks: ["jasmine"],
    files: ["test.js"],
Severity: Major
Found in src/karma.conf.js - About 2 hrs to fix

    Function combinedPut has 52 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      private combinedPut(
        range: NumberRange,
        value: T,
        shouldPutCoalescing: boolean = false
      ): void {
    Severity: Major
    Found in src/range-map/range-map.ts - About 2 hrs to fix

      Function intersection has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Open

        intersection(other: NumberRange): NumberRange | null {
          if (!this.isConnected(other)) {
            return null;
          }
      
      
      Severity: Minor
      Found in src/number-range/number-range.ts - 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

      Function toString has 32 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        toString(): string {
          const getLowerBoundCharacter = () => {
            switch (this.lowerBoundType) {
              case BoundType.OPEN:
                return "(";
      Severity: Minor
      Found in src/number-range/number-range.ts - About 1 hr to fix

        Function intersection has 31 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          intersection(other: NumberRange): NumberRange | null {
            if (!this.isConnected(other)) {
              return null;
            }
        
        
        Severity: Minor
        Found in src/number-range/number-range.ts - About 1 hr to fix

          Function span has 28 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            span(other: NumberRange): NumberRange {
              // Determine outer ranges
              const lowerRange = this.lowerEndpointValue <= other.lowerEndpointValue ? this : other;
              const upperRange = this.upperEndpointValue >= other.upperEndpointValue ? this : other;
          
          
          Severity: Minor
          Found in src/number-range/number-range.ts - About 1 hr to fix

            Function span has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
            Open

              span(other: NumberRange): NumberRange {
                // Determine outer ranges
                const lowerRange = this.lowerEndpointValue <= other.lowerEndpointValue ? this : other;
                const upperRange = this.upperEndpointValue >= other.upperEndpointValue ? this : other;
            
            
            Severity: Minor
            Found in src/number-range/number-range.ts - 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

            Function toString has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
            Open

              toString(): string {
                const getLowerBoundCharacter = () => {
                  switch (this.lowerBoundType) {
                    case BoundType.OPEN:
                      return "(";
            Severity: Minor
            Found in src/number-range/number-range.ts - 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

            Severity
            Category
            Status
            Source
            Language