lib/services/seed.js
Showing 0 of 3 total issues
Function seedTheUser
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Wontfix
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);
- Read upRead up
Function start
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Wontfix
Wontfix
const start = async (options, UserService, AuthService, TaskService) => { let pwd; const result = []; // Check for provided options
Function start
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Wontfix
Wontfix
const start = async (options, UserService, AuthService, TaskService) => { let pwd; const result = []; // Check for provided options
- Read upRead up