Showing 5 of 7 total issues

Function lex has 55 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function lex(contents) {
  var syntax = esprima.parse(contents, {
    tokens: true,
    loc: true,
    range: true,
Severity: Major
Found in lib/lex.js - About 2 hrs to fix

    Function literate has 47 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function literate(filename, opts) {
      opts = opts || {};
      var code = opts.code || false;
      var codeOpen = opts.codeOpen || "\n```js\n";
      var codeClose = opts.codeClose || "\n```\n\n";
    Severity: Minor
    Found in lib/literate.js - About 1 hr to fix

      Function addWhitespace has 34 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        function addWhitespace(from, to) {
          var ws;
      
          var comments = syntax.comments.filter(function (comment) {
            return comment.range[0] >= from && comment.range[1] <= to;
      Severity: Minor
      Found in lib/lex.js - About 1 hr to fix

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

        function getTokens(filename) {
          var contents = fs.readFileSync(filename).toString();
          contents = stripShebang(contents);
          var tokens = lex(contents);
        
        
        Severity: Minor
        Found in lib/literate.js - About 1 hr to fix

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

          function literate(filename, opts) {
            opts = opts || {};
            var code = opts.code || false;
            var codeOpen = opts.codeOpen || "\n```js\n";
            var codeClose = opts.codeClose || "\n```\n\n";
          Severity: Minor
          Found in lib/literate.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

          Severity
          Category
          Status
          Source
          Language