zxing-js/library

View on GitHub
src/core/datamatrix/encoder/ErrorCorrection.ts

Summary

Maintainability
C
7 hrs
Test Coverage

Function createECCBlock has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
Open

  private static createECCBlock(codewords: string, numECWords: number): string {
    let table = -1;
    for (let i = 0; i < FACTOR_SETS.length; i++) {
      if (FACTOR_SETS[i] === numECWords) {
        table = i;
Severity: Minor
Found in src/core/datamatrix/encoder/ErrorCorrection.ts - About 2 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

Function encodeECC200 has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
Open

  public static encodeECC200(codewords: string, symbolInfo: SymbolInfo) {
    if (codewords.length !== symbolInfo.getDataCapacity()) {
      throw new Error(
        'The number of codewords does not match the selected symbol'
      );
Severity: Minor
Found in src/core/datamatrix/encoder/ErrorCorrection.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 encodeECC200 has 38 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  public static encodeECC200(codewords: string, symbolInfo: SymbolInfo) {
    if (codewords.length !== symbolInfo.getDataCapacity()) {
      throw new Error(
        'The number of codewords does not match the selected symbol'
      );
Severity: Minor
Found in src/core/datamatrix/encoder/ErrorCorrection.ts - About 1 hr to fix

    Function createECCBlock has 37 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      private static createECCBlock(codewords: string, numECWords: number): string {
        let table = -1;
        for (let i = 0; i < FACTOR_SETS.length; i++) {
          if (FACTOR_SETS[i] === numECWords) {
            table = i;
    Severity: Minor
    Found in src/core/datamatrix/encoder/ErrorCorrection.ts - About 1 hr to fix

      There are no issues that match your filters.

      Category
      Status