Showing 22 of 176 total issues
Function placement
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
Open
protected placement(): string { const winHeight = window.innerHeight; const nodeOffset = this.styles?.['top.px'] ? this.styles['top.px'] : 0; const nodeHeight = this.styles?.['height.px'] ? this.styles['height.px'] : 0; const winCenter = winHeight == undefined ? 0 : winHeight / 2;
- Read upRead up
Function categoriesPathMatcher
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
Open
export function categoriesPathMatcher(url: UrlSegment[]) { if (url.length <= 0) { return null; }
- Read upRead up