marcellodesales/istanbul-cobertura-badger

View on GitHub

Showing 6 of 6 total issues

Function downloader has 62 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function downloader(url, saveAtPath, callback) {
  // Handle the parameter errors
  if (!url || !saveAtPath) {
    return callback(new Error("You need to provide the URL and the location to save the file!"));
  }
Severity: Major
Found in lib/downloader.js - About 2 hrs to fix

    Function gettingStats has 46 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      fs.stat(dirToSave, function gettingStats(err) {
        if (err) {
          return callback(new Error("The path '" + dirToSave + "' does NOT exist!"));
        }
    
    
    Severity: Minor
    Found in lib/downloader.js - About 1 hr to fix

      Function parseIstanbulReport has 36 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function parseIstanbulReport(reportFilePath, callback) {
        if (!reportFilePath) {
          return callback(new Error("The istanbul report file path must be provided!"));
        }
      
      
      Severity: Minor
      Found in lib/istanbulReportParser.js - About 1 hr to fix

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

        function downloader(url, saveAtPath, callback) {
          // Handle the parameter errors
          if (!url || !saveAtPath) {
            return callback(new Error("You need to provide the URL and the location to save the file!"));
          }
        Severity: Minor
        Found in lib/downloader.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 requestHandler has 30 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            var req = httpClient.get(url, function requestHandler(res) {
              if (res.statusCode === 404) {
                return callback(new Error("The resource at the given URL " + url + " does NOT exist"));
              }
        
        
        Severity: Minor
        Found in lib/downloader.js - About 1 hr to fix

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

          function istanbulCoberturaBadger(opts, callback) {
            // Resolve the options
            opts = extend({
              // Setting the default coverage file generated by istanbul cobertura report.
              istanbulReportFile: "./coverage/cobertura-coverage.xml",
          Severity: Minor
          Found in lib/index.js - About 1 hr to fix
            Severity
            Category
            Status
            Source
            Language