Showing 5 of 7 total issues
Function lex
has 55 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function lex(contents) {
var syntax = esprima.parse(contents, {
tokens: true,
loc: true,
range: true,
Function literate
has 47 lines of code (exceeds 25 allowed). Consider refactoring. Open
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";
Function addWhitespace
has 34 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function addWhitespace(from, to) {
var ws;
var comments = syntax.comments.filter(function (comment) {
return comment.range[0] >= from && comment.range[1] <= to;
Function getTokens
has 30 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function getTokens(filename) {
var contents = fs.readFileSync(filename).toString();
contents = stripShebang(contents);
var tokens = lex(contents);
Function literate
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
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";
- Read upRead up
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"