HR/CryptoSync

View on GitHub

Showing 25 of 598 total issues

Function pushCryptQueue has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

exports.pushCryptQueue = function (file) {
  logger.verbose(`PROMISE: pushCryptQueue for ${file.name}`)
  return new Promise(function (resolve, reject) {
    exports.cryptQueue.push(file, function (err, file) {
      if (err) {
Severity: Minor
Found in src/sync.js - About 35 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 Prompt has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

exports.Prompt = function (reset = false) {
  return new Promise(function (resolve, reject) {
    Main.MasterPassPrompt(reset, function (err, gotMP) {
      if (err) reject(err)
      if (gotMP) {
Severity: Minor
Found in src/MasterPass.js - About 35 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 init has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

exports.init = function () {
  return new Promise(function (resolve, reject) {
    // Set drain (callback) handlers
    exports.initDrains()

Severity: Minor
Found in src/synker.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

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

const MasterPassKey = (function () {
  const mpk = new WeakMap()

  function MasterPassKey (key) {
    mpk.set(this, key)
Severity: Minor
Found in src/_MasterPassKey.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

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

exports.decrypt = function (mpkey) {
  return new Promise(function (resolve, reject) {
    if (!mpkey) reject(new Error('No MasterPassKey passed'))
    crypto.decryptObj(global.paths.vault, mpkey, global.creds.viv, global.creds.authTag, function (err, vault) {
      if (err) {
Severity: Minor
Found in src/vault.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