weareopensource/Node

View on GitHub
lib/services/seed.js

Summary

Maintainability
A
0 mins
Test Coverage

Showing 0 of 3 total issues

Function seedTheUser has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Wontfix

const seedTheUser = (UserService, user) => async (password) => {
user.password = password;
if (user.email === seedOptions.seedAdmin.email && process.env.NODE_ENV === 'production' && (await UserService.get(user)))
return new AppError(`Failed due to local account already exists: ${user.email}`);
if (process.env.NODE_ENV === 'test' && (await UserService.get(user))) UserService.remove(user);
Severity: Minor
Found in lib/services/seed.js - About 1 hr to fix

Function start has 26 lines of code (exceeds 25 allowed). Consider refactoring.
Wontfix

const start = async (options, UserService, AuthService, TaskService) => {
let pwd;
const result = [];
 
// Check for provided options
Severity: Minor
Found in lib/services/seed.js - About 1 hr to fix

    Function start has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Wontfix

    const start = async (options, UserService, AuthService, TaskService) => {
    let pwd;
    const result = [];
     
    // Check for provided options
    Severity: Minor
    Found in lib/services/seed.js - About 55 mins to fix

    There are no issues that match your filters.

    Category
    Status