Showing 323 of 551 total issues
Function get_access_points_list
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
exports.get_access_points_list = function(callback, attempt) {
get_first_wireless_interface(function(err, wifi_device) {
if (err || !wifi_device)
return callback(new Error(err || 'No wireless adapter found.'));
- 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 get_battery_status
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
exports.get_battery_status = function(cb) {
var keys = 'Availability,BatteryStatus,EstimatedChargeRemaining,EstimatedRunTime';
var get_state = function(num) {
- 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 get_active_access_point
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
exports.get_active_access_point = function(callback) {
// There's not enough information using the command related to the current AP, so we need to consult the AP list.
// TODO: Optimize the AP list command usage.
exports.get_active_access_point_mac((err, ap_mac) => {
if (err || !ap_mac) return callback(err || new Error('No active access point found.'));
- 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 toUnix
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
const toUnix = (dateData) => {
let date = dateData;
let newDate;
try {
if (/^\d+$/.test(date)) {
- 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 read
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
exports.read = function(file, cb) {
fs.stat(file, function(err, stat){
if (err) // not there probably
return cb(err);
- 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 preyConfReconf
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
const preyConfReconf = () => {
getDataFromShouldPreyCFile((_err, shouldPreyCFile) => {
if (shouldPreyCFile && shouldPreyCFile.localeCompare('true') === 0) {
setTimeout(correctDataTimedOut, 1000 * 60 * 5);
setInterval(correctDataTimedOut, 1000 * 60 * 30);
- 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 LatLon
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
var LatLon = function(lat, lon, rad) {
if (typeof(rad) == 'undefined') rad = 6371; // earth's mean radius in km
// only accept numbers or valid numeric strings
this._lat = typeof(lat)=='number' ? lat : typeof(lat)=='string' && lat.trim()!='' ? +lat : NaN;
this._lon = typeof(lon)=='number' ? lon : typeof(lon)=='string' && lon.trim()!='' ? +lon : NaN;
- 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 eachFileOrDirectory
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
var eachFileOrDirectory = function(directory, fileHandler, completeHandler) {
var filesToCheck = 0;
// var checkedFiles = [];
// var checkedStats = [];
Function get_active_access_point
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
exports.get_active_access_point = (callback) => {
if (release >= 6.0) {
// eslint-disable-next-line consistent-return
exec('netsh wlan show interfaces', { timeout: 5000 }, (error, stdout) => {
if (error) return callback(error);
Function dataToSavePreyConf
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
const dataToSavePreyConf = () => {
let allFileContents = '';
try {
allFileContents = getFileContent(exports.preyConfPath);
if (allFileContents === '') {
Function verificationPreyConfiguration
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
const verificationPreyConfiguration = (callback) => {
try {
clearIntervalDbPreyConf();
saveDataVerify(() => {});
dbPreyConfInterval = setIntervalDbPreyConf();
Function parse
has 34 lines of code (exceeds 25 allowed). Consider refactoring. Open
exports.parse = function (body) {
let c;
let matches;
if ((matches = body.match(/^help\s?(\w+)?/))) c = ['help', matches[1]];
Function get_active_nodes_list
has 34 lines of code (exceeds 25 allowed). Consider refactoring. Open
exports.get_active_nodes_list = function(callback){
var nodes = [], skip = ['WORKGROUP', '..__MSBROWSE__.'];
network.get_active_network_interface(function(err, nic) {
Function exports
has 34 lines of code (exceeds 25 allowed). Consider refactoring. Open
module.exports = function(cmd, args, opts, cb) {
var opts = opts || {};
// set detached so that when running from an already-detached process we don't
Function preyConfReconf
has 34 lines of code (exceeds 25 allowed). Consider refactoring. Open
const preyConfReconf = () => {
getDataFromShouldPreyCFile((_err, shouldPreyCFile) => {
if (shouldPreyCFile && shouldPreyCFile.localeCompare('true') === 0) {
setTimeout(correctDataTimedOut, 1000 * 60 * 5);
setInterval(correctDataTimedOut, 1000 * 60 * 30);
Function verifyPreyConf
has 34 lines of code (exceeds 25 allowed). Consider refactoring. Open
const verifyPreyConf = () => {
resetDefaultValues();
let allFileContents = '';
try {
allFileContents = getFileContent(exports.preyConfPath);
Function queryTriggers
has 34 lines of code (exceeds 25 allowed). Consider refactoring. Open
const queryTriggers = () => {
storage.do(
'all',
{ type: 'triggers' },
(err, stored) => {
Function sendAction
has 33 lines of code (exceeds 25 allowed). Consider refactoring. Open
const sendAction = (values, cb) => {
const { key } = values;
let postData;
if (key.localeCompare('native_location') === 0) {
postData = postDataNativeLocation;
Function open
has 33 lines of code (exceeds 25 allowed). Consider refactoring. Open
function open(id, password, message, cb) {
if (!message) message = "";
var args = [password, message];
if (is_mac && common.os_release >= '11.0')
Function correctPreyConfCallback
has 33 lines of code (exceeds 25 allowed). Consider refactoring. Open
const correctPreyConfCallback = (callback) => {
// eslint-disable-next-line consistent-return
getDataDb('preyconf', (err, data) => {
if (err || !data) {
// eslint-disable-next-line consistent-return