Showing 6 of 12 total issues
File entities.ts
has 427 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
import { EntityMap } from './types';
const entities: EntityMap = {
event: {
actions: {
Function make_actions
has 99 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function make_actions(action_data: ActionData) {
const { req_fn, details } = action_data
const { request, after, before } = details
const { path } = request
Function make_actions
has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring. Open
Open
function make_actions(action_data: ActionData) {
const { req_fn, details } = action_data
const { request, after, before } = details
const { path } = request
- Read upRead up
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 EventbriteProvider
has 55 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function EventbriteProvider(this: any, options: any) {
const seneca: any = this
let API_KEY = ''
Function EventbriteProvider
has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring. Open
Open
function EventbriteProvider(this: any, options: any) {
const seneca: any = this
let API_KEY = ''
- Read upRead up
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 save
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
async function save(this:any, msg:any) {
const { q, ent } = msg
let body: Record<string, any> = {}
const built_path = build_uri(path, ent)