zxing-js/library

View on GitHub

Showing 605 of 958 total issues

Avoid deeply nested control flow statements.
Open

                        if (min < averageNeighborBlackPoint) {
                            average = averageNeighborBlackPoint;
                        }
Severity: Major
Found in src/core/common/HybridBinarizer.ts - About 45 mins to fix

    Avoid deeply nested control flow statements.
    Open

                            while (((theBits << (31 - bit)) & 0xFFFFFFFF) === 0) {
                                bit++;
                            }
    Severity: Major
    Found in src/core/common/BitMatrix.ts - About 45 mins to fix

      Avoid deeply nested control flow statements.
      Open

                              if (maximizeX) {
                                  if (x > resX) {
                                      resX = x;
                                  }
                              } else {
      Severity: Major
      Found in src/core/common/detector/CornerDetector.ts - About 45 mins to fix

        Avoid deeply nested control flow statements.
        Open

                                if (pixel > max) {
                                    max = pixel;
                                }
        Severity: Major
        Found in src/core/common/HybridBinarizer.ts - About 45 mins to fix

          Avoid deeply nested control flow statements.
          Open

                                  if (maximizeY) {
                                      if (y > resY) {
                                          resY = y;
                                      }
                                  } else {
          Severity: Major
          Found in src/core/common/detector/CornerDetector.ts - About 45 mins to fix

            Avoid deeply nested control flow statements.
            Open

                                    if ((x32 * 32 + bit) > right) {
                                        right = x32 * 32 + bit;
                                    }
            Severity: Major
            Found in src/core/common/BitMatrix.ts - About 45 mins to fix

              Function parseIsoIec646Block has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
              Open

                private parseIsoIec646Block(): BlockParsedResult {
                  while (this.isStillIsoIec646(this.current.getPosition())) {
                    let iso = this.decodeIsoIec646(this.current.getPosition());
                    this.current.setPosition(iso.getNewPosition());
              
              
              Severity: Minor
              Found in src/core/oned/rss/expanded/decoders/GeneralAppIdDecoder.ts - 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

              Avoid deeply nested control flow statements.
              Open

                      if (oddSum < evenSum) {
                        incrementOdd = true;
                        decrementEven = true;
                      } else {
                        decrementOdd = true;
              Severity: Major
              Found in src/core/oned/rss/expanded/RSSExpandedReader.ts - About 45 mins to fix

                Avoid deeply nested control flow statements.
                Open

                            if ((counter * 2) >= totalWideCountersWidth) {
                              return -1;
                            }
                Severity: Major
                Found in src/core/oned/Code39Reader.ts - About 45 mins to fix

                  Avoid deeply nested control flow statements.
                  Open

                                  if (evenParityBad) {
                                      throw new NotFoundException();
                                  }
                  Severity: Major
                  Found in src/core/oned/rss/RSS14Reader.ts - About 45 mins to fix

                    Function decodeAllCodes has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                    Open

                      decodeAllCodes(buff: StringBuilder, initialPosition: number): string {
                        let currentPosition = initialPosition;
                        let remaining = null;
                        do {
                          let info = this.decodeGeneralPurposeField(currentPosition, remaining);
                    Severity: Minor
                    Found in src/core/oned/rss/expanded/decoders/GeneralAppIdDecoder.ts - 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

                    Function parseBlocks has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                    Open

                      private parseBlocks(): DecodedInformation {
                        let isFinished: boolean;
                        let result: BlockParsedResult;
                        do {
                          let initialPosition = this.current.getPosition();
                    Severity: Minor
                    Found in src/core/oned/rss/expanded/decoders/GeneralAppIdDecoder.ts - 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

                    Avoid deeply nested control flow statements.
                    Open

                                switch (code) {
                                  case Code128Reader.CODE_FNC_1:
                                    if (convertFNC1) {
                                      if (result.length === 0) {
                                        // GS1 specification 5.4.3.7. and 5.4.6.4. If the first char after the start code
                    Severity: Major
                    Found in src/core/oned/Code128Reader.ts - About 45 mins to fix

                      Function decodeMiddle has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                      Open

                          public decodeMiddle(row: BitArray, startRange: Int32Array, resultString: string) {
                              const counters = this.decodeMiddleCounters;
                              counters[0] = 0;
                              counters[1] = 0;
                              counters[2] = 0;
                      Severity: Minor
                      Found in src/core/oned/EAN8Reader.ts - 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

                      Avoid deeply nested control flow statements.
                      Open

                                  if (variance < bestVariance) {
                                    bestVariance = variance;
                                    bestMatch = startCode;
                                  }
                      Severity: Major
                      Found in src/core/oned/Code128Reader.ts - About 45 mins to fix

                        Avoid deeply nested control flow statements.
                        Open

                                        if (convertFNC1) {
                                          if (result.length === 0) {
                                            // GS1 specification 5.4.3.7. and 5.4.6.4. If the first char after the start code
                                            // is FNC1 then this is GS1-128. We add the symbology identifier.
                                            result += ']C1';
                        Severity: Major
                        Found in src/core/oned/Code128Reader.ts - About 45 mins to fix

                          Avoid deeply nested control flow statements.
                          Open

                                  if (!evenParityBad) {
                                    throw new NotFoundException();
                                  }
                          Severity: Major
                          Found in src/core/oned/rss/expanded/RSSExpandedReader.ts - About 45 mins to fix

                            Avoid deeply nested control flow statements.
                            Open

                                            if (!evenParityBad) {
                                                throw new NotFoundException();
                                            }
                            Severity: Major
                            Found in src/core/oned/rss/RSS14Reader.ts - About 45 mins to fix

                              Avoid deeply nested control flow statements.
                              Open

                                          if (shiftUpperMode === upperMode) {
                                            result += String.fromCharCode((code - 64));
                                          } else {
                                            result += String.fromCharCode((code + 64));
                                          }
                              Severity: Major
                              Found in src/core/oned/Code128Reader.ts - About 45 mins to fix

                                Function extractParameters has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                                Open

                                    private extractParameters(bullsEyeCorners: ResultPoint[]): void {
                                        if (!this.isValidPoint(bullsEyeCorners[0]) || !this.isValidPoint(bullsEyeCorners[1]) ||
                                            !this.isValidPoint(bullsEyeCorners[2]) || !this.isValidPoint(bullsEyeCorners[3])) {
                                            throw new NotFoundException();
                                        }
                                Severity: Minor
                                Found in src/core/aztec/detector/Detector.ts - 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

                                Severity
                                Category
                                Status
                                Source
                                Language