trufflesuite/truffle

View on GitHub
packages/core/lib/networks.js

Summary

Maintainability
C
1 day
Test Coverage

Function display has 76 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  display: async function(config) {
    const networks = await this.deployed(config);
    const { networkNames, starNetworks } = Object.keys(networks)
      .sort()
      .reduce(
Severity: Major
Found in packages/core/lib/networks.js - About 3 hrs to fix

    Function deployed has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
    Open

      deployed: async function(options) {
        let files;
        try {
          // Only read JSON files in directory
          files = fs
    Severity: Minor
    Found in packages/core/lib/networks.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 clean has 33 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      clean: async function(config) {
        // Only read JSON files in directory
        let files = fs
          .readdirSync(config.contracts_build_directory)
          .filter(fn => fn.endsWith(".json"));
    Severity: Minor
    Found in packages/core/lib/networks.js - About 1 hr to fix

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

        deployed: async function(options) {
          let files;
          try {
            // Only read JSON files in directory
            files = fs
      Severity: Minor
      Found in packages/core/lib/networks.js - About 1 hr to fix

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

          display: async function(config) {
            const networks = await this.deployed(config);
            const { networkNames, starNetworks } = Object.keys(networks)
              .sort()
              .reduce(
        Severity: Minor
        Found in packages/core/lib/networks.js - 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

        There are no issues that match your filters.

        Category
        Status