Showing 5 of 5 total issues
File NodeService.ts
has 480 lines of code (exceeds 300 allowed). Consider refactoring. Open
/* eslint-disable sonarjs/no-duplicate-string */
export const NodeService = {
getTreeNodesData() {
return [
{
Function getTreeTableNodesData
has 350 lines of code (exceeds 300 allowed). Consider refactoring. Open
getTreeTableNodesData() {
return [
{
key: '0',
data: {
Function convertToSerializable
has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring. Open
export const convertToSerializable = (
e: Error | HttpException | NativeError,
params?: SerializerParams
// eslint-disable-next-line sonarjs/cognitive-complexity
): Serializable => {
- 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 tryOrFail
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
export const tryOrFail = async <T extends AsyncFn<unknown[], unknown>>(
fn: T
): Promise<ReturnType<T>> => {
return fn().catch((e) => {
if (e instanceof HttpException) {
- 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 assertParsableStrictIsoDateZ
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
export function assertParsableStrictIsoDateZ(
v: unknown,
msgOrErrorFactory?: MsgOrErrorFactory
): asserts v is ParsableStrictIsoDateZ {
let check:
- 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"