timbeadle/cfpathcheck

View on GitHub

Showing 6 of 16 total issues

Function checkFile has a Cognitive Complexity of 38 (exceeds 5 allowed). Consider refactoring.
Open

export const checkFile = (filePath) => {
    const templatePathViolations = [];
    const taglibPathViolations = [];
    const prefixes = [];
    const prefixUsages = [];
Severity: Minor
Found in lib/cfpathcheck.js - About 5 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 comparePrefixArrays has a Cognitive Complexity of 30 (exceeds 5 allowed). Consider refactoring.
Open

export const comparePrefixArrays = (prefixArray1, prefixArray2, message, severity) => {
    const prefixedViolations = {};
    const prefixManifest = {};
    const violations = [];

Severity: Minor
Found in lib/cfpathcheck.js - About 4 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 checkFile has 89 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export const checkFile = (filePath) => {
    const templatePathViolations = [];
    const taglibPathViolations = [];
    const prefixes = [];
    const prefixUsages = [];
Severity: Major
Found in lib/cfpathcheck.js - About 3 hrs to fix

    Function comparePrefixArrays has 54 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    export const comparePrefixArrays = (prefixArray1, prefixArray2, message, severity) => {
        const prefixedViolations = {};
        const prefixManifest = {};
        const violations = [];
    
    
    Severity: Major
    Found in lib/cfpathcheck.js - About 2 hrs to fix

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

      export const writeOutput = (output) => {
          if (Array.isArray(output)) {
              for (const violation of output) {
                  console.log(`File: ${chalk.green(violation.filename)}`);
                  for (const message of violation.messages) {
      Severity: Minor
      Found in lib/cfpathcheck.js - 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 getFiles has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

      export const getFiles = (filePath) => {
          let fileNames = [];
      
          // Resolve the path, if a relative path was passed in
          if (!path.isAbsolute(filePath)) {
      Severity: Minor
      Found in lib/cfpathcheck.js - 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