Showing 4 of 32 total issues

File crypto.js has 254 lines of code (exceeds 250 allowed). Consider refactoring.
Open

'use strict'
/**
 * crypto.js
 * Provides the crypto functionality required
 ******************************/
Severity: Minor
Found in app/core/crypto.js - About 2 hrs to fix

    Function checkUpdate has 37 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      checkUpdate: function () {
        return new Promise((resolve, reject) => {
          https.get(REPO.RELEASES_API_URL, {
              headers: { 'User-Agent': USER_AGENT }
            }, (res) => {
    Severity: Minor
    Found in app/utils/update.js - About 1 hr to fix

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

      exports.deriveKey = (pass, psalt) => {
        return new Promise((resolve, reject) => {
          // reject with error if pass not provided
          if (!pass) reject(new Error('Pass to derive key from not provided'))
      
      
      Severity: Minor
      Found in app/core/crypto.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 MasterPassKey has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

      const MasterPassKey = (function () {
        // Private mpk variable that stores the MasterPassKey
        const mpk = new WeakMap()
      
        // Class constructor
      Severity: Minor
      Found in app/core/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

      Severity
      Category
      Status
      Source
      Language