quorrajs/Ouch

View on GitHub

Showing 8 of 12 total issues

Function frame has a Cognitive Complexity of 40 (exceeds 5 allowed). Consider refactoring.
Open

function frame(frame) {
    frame.__comments = [];
    frame.__proto__ = {
        __proto__: frame.__proto__,

Severity: Minor
Found in exception/frame.js - About 6 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 frame has 67 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function frame(frame) {
    frame.__comments = [];
    frame.__proto__ = {
        __proto__: frame.__proto__,

Severity: Major
Found in exception/frame.js - About 2 hrs to fix

    Function handle has 49 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    PrettyPageHandler.prototype.handle = function (next) {
    
        var helper = new TemplateHelper();
    
        var templateFile = this.__getResource("views/layout.ejs");
    Severity: Minor
    Found in handler/PrettyPageHandler.js - About 1 hr to fix

      Function app has 30 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      http.createServer(function app(req, res) {
      
          if (req.url === '/favicon.ico') {
              res.writeHead(200, {'Content-Type': 'image/x-icon'});
              res.end();
      Severity: Minor
      Found in examples/example-comments.js - About 1 hr to fix

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

        Ouch.prototype.handleException = function (exception, request, response, CB) {
            if (!request) {
                request = null;
            }
        
        
        Severity: Minor
        Found in Ouch.js - About 1 hr to fix

          Function handle has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
          Open

          JsonResponseHandler.prototype.handle = function (next) {
              if (this.__onlyForAjaxOrJsonRequests && !(this.__isAjaxRequest() || this.__wantsJson())) {
                  next();
              } else {
          
          
          Severity: Minor
          Found in handler/JsonResponseHandler.js - About 55 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 PrettyPageHandler has 5 arguments (exceeds 4 allowed). Consider refactoring.
          Open

          function PrettyPageHandler(theme, pageTitle, editor, sendResponse, additionalScripts) {
          Severity: Minor
          Found in handler/PrettyPageHandler.js - About 35 mins to fix

            Function handle has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

            PrettyPageHandler.prototype.handle = function (next) {
            
                var helper = new TemplateHelper();
            
                var templateFile = this.__getResource("views/layout.ejs");
            Severity: Minor
            Found in handler/PrettyPageHandler.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