iamolegga/nest-nsq-transport

View on GitHub

Showing 5 of 24 total issues

Function handleMessage has 46 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  private handleMessage(pattern: NSQPattern) {
    return async (message: Message) => {
      this.handlingMessagesWG.add(1);

      const handler = this.getHandlerByPattern(pattern.toString());
Severity: Minor
Found in src/server.ts - About 1 hr to fix

    Function metadata has 39 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      get metadata(): ModuleMetadata {
        const wg = this.wg;
        const token = this.clientToken;
        const data = Math.random().toString();
    
    
    Severity: Minor
    Found in __tests__/multi.spec.ts - About 1 hr to fix

      Function metadata has 34 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        get metadata(): ModuleMetadata {
          const wg = this.wg;
          const token = this.clientToken;
          const data = Math.random().toString();
      
      
      Severity: Minor
      Found in __tests__/discard.spec.ts - About 1 hr to fix

        Function metadata has 32 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          get metadata(): ModuleMetadata {
            const wg = this.wg;
            const token = this.clientToken;
            const data = Math.random().toString();
        
        
        Severity: Minor
        Found in __tests__/options.spec.ts - About 1 hr to fix

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

            constructor(private readonly opts: NSQClientOpitons) {
              super();
          
              if ('nsqdURL' in opts) {
                const { nsqdURL, serializer: _, ...rest } = opts;
          Severity: Minor
          Found in src/client.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