src/support/configuration.js
Showing 2 of 2 total issues
Function DeepDevOrProd
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
Open
function DeepDevOrProd (object, prop) { let target = object[prop]; if (Object.keys(target).indexOf('dev') === -1 && typeof target === 'object') { for (const deep of Object.keys(target)) { DeepDevOrProd(object[prop], deep);
- Read upRead up
- Create a ticketCreate a ticket
Function constructor
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
constructor () { /** @type {Object} */ this.bundles = null; /** @type {Object} */ this.conections = null;
- Create a ticketCreate a ticket