Showing 6 of 17 total issues
File installer.js
has 367 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
#!/usr/bin/env node
'use strict';
const fs = require('fs-extra'),
Function macUnpack
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function macUnpack(dataFor = appleMacPlatform, dataForOther = windowsOtherPlatform) {
return new Promise((resolve, reject) => {
retrieve({
url: dataForOther.url + '7z1805-extra.7z',
dest: '.' + sep + '7z-extra.7z'
Function versionCompare
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
Open
const versionCompare = (left, right) => {
if (typeof left + typeof right != 'stringstring')
return false;
let a = left.split('.');
- 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"
Further reading
Function exports
has 7 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
name,
files,
destination = '',
options = {
title: null,
Function createSfxWindows
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
exports.createSfxWindows = function (name, files, destination, options, type) {
Function getPath
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
Open
function getPath(module, folder = pwd) {
if (folder.length < 1) {
return null;
}
- 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"