OpenHPS/openhps-rdf

View on GitHub

Showing 52 of 207 total issues

Function deserializer has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

        deserializer: (thing: Thing) => {
            let yaw = 0;
            let roll = 0;
            let pitch = 0;
            let unit: AngleUnit;
Severity: Minor
Found in src/mapping/Orientation.ts - About 45 mins to fix

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 convertSingleValue has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    convertSingleValue(
        sourceObject: any,
        typeDescriptor: TypeDescriptor,
        knownTypes: Map<string, Serializable<any>>,
        memberName = 'object',
Severity: Minor
Found in src/rdf/InternalRDFDeserializer.ts - About 45 mins to fix

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 serializeLiteral has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    protected serializeLiteral(
        sourceObject: any,
        typeDescriptor?: TypeDescriptor,
        memberName?: string,
        serializer?: Serializer,
Severity: Minor
Found in src/rdf/InternalRDFSerializer.ts - About 45 mins to fix

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 getTs has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

export function getTs(node: NamedNode, store: Store, namespace: string, entityTypes: { [alias: string]: string }): string {
    const types = store.getObjects(node, 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type', null);
    const entityType = types.length > 0 ? Object.entries(entityTypes).find(
        ([_alias, type]) => type === types[0].id,
    ) : undefined;
Severity: Minor
Found in src/bin/getTs.ts - About 35 mins to fix

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

Avoid too many return statements within this function.
Open

            return serializer(sourceObject, typeDescriptor, memberName, this, memberOptions, serializerOptions);
Severity: Major
Found in src/rdf/InternalRDFSerializer.ts - About 30 mins to fix

    Avoid too many return statements within this function.
    Open

                return this.deserializeObject(
                    sourceObject,
                    typeDescriptor,
                    knownTypes,
                    memberName,
    Severity: Major
    Found in src/rdf/InternalRDFDeserializer.ts - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

                  return this.serializeObject(
                      sourceObject,
                      typeDescriptor,
                      memberName,
                      this,
      Severity: Major
      Found in src/rdf/InternalRDFSerializer.ts - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

                        return mergeDeep(
                            {
                                termType: 'BlankNode',
                                value: DataFactory.blankNode().value,
                                predicates: {},
        Severity: Major
        Found in src/rdf/InternalRDFSerializer.ts - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

                  return false;
          Severity: Major
          Found in src/rdf/InternalRDFDeserializer.ts - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

                            return output as NamedNode;
            Severity: Major
            Found in src/rdf/InternalRDFSerializer.ts - About 30 mins to fix

              Function getComment has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

              function getComment(node: NamedNode, store: Store): string {
                  const rdfComments = store.getObjects(node, 'http://www.w3.org/2000/01/rdf-schema#comment', null)
                      .filter((object: Literal) => object.language === "en");
                  const skosDefinitions = store.getObjects(node, 'http://www.w3.org/2004/02/skos/core#definition', null)
                      .filter((object: Literal) => object.language === "en");
              Severity: Minor
              Found in src/bin/getTs.ts - About 25 mins to fix

              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 deserializeLiteral has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  deserializeLiteral(sourceObject: Literal, typeDescriptor: TypeDescriptor): any {
                      if ((sourceObject as unknown as NamedNode).termType === 'NamedNode') {
                          return sourceObject.value;
                      }
              
              
              Severity: Minor
              Found in src/rdf/InternalRDFDeserializer.ts - About 25 mins to fix

              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

              Severity
              Category
              Status
              Source
              Language