HugoOM/sfdx_autoheader

View on GitHub

Showing 9 of 15 total issues

File documenter.method.ts has 277 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import {
  Selection,
  TextEditor,
  TextEditorEdit,
  window,
Severity: Minor
Found in src/extension/documenter.method.ts - About 2 hrs to fix

    Function parseApexMethodSignature has 50 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      private parseApexMethodSignature(): Method | void {
        if (!window.activeTextEditor) return;
    
        const method: Method = {
          parameters: [],
    Severity: Minor
    Found in src/extension/documenter.method.ts - About 2 hrs to fix

      Function parseApexMethodSignature has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
      Open

        private parseApexMethodSignature(): Method | void {
          if (!window.activeTextEditor) return;
      
          const method: Method = {
            parameters: [],
      Severity: Minor
      Found in src/extension/documenter.method.ts - About 1 hr 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 getFileHeaderFromTemplate has 30 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      export function getFileHeaderFromTemplate(languageId: string) {
        let blockStart = "/**",
          lineStart = " *",
          blockEnd = "**/";
        const formattedDate = helper.getFormattedDate();
      Severity: Minor
      Found in src/templates/templates.file.ts - About 1 hr to fix

        Function processToken has 27 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          private processToken(
            token: string,
            tokensIterator: IterableIterator<string>,
            isFirstOfLine: boolean,
            isWithinCollection: boolean,
        Severity: Minor
        Found in src/extension/documenter.method.ts - About 1 hr to fix

          Function tokenizeApexMethod has 26 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            private tokenizeApexMethod(content: string, isSignature: boolean): string[] {
              const tokens = content
                .split(/\(|\)|,|<|>|\s|\{|\}/gi)
                .map((token, index, tokens) => {
                  if (token === "@") tokens[index + 1] = "@" + tokens[index + 1];
          Severity: Minor
          Found in src/extension/documenter.method.ts - About 1 hr to fix

            Function getMethodTextFromDocument has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

              private getMethodTextFromDocument(
                lineNumber: number,
                document: TextDocument
              ): string | void {
                const re_methodDefinitionEnd = /\)/gi;
            Severity: Minor
            Found in src/extension/documenter.method.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

            Function processToken has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

              private processToken(
                token: string,
                tokensIterator: IterableIterator<string>,
                isFirstOfLine: boolean,
                isWithinCollection: boolean,
            Severity: Minor
            Found in src/extension/documenter.method.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

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

              private isLightning(document: TextDocument): boolean {
                const validExtensions: string[] = ["htm", "html", "cmp", "js"];
                const validSalesforceFolderNames = ["aura", "lwc"];
                const pathTokens = document.uri.path.split("/");
                const folderName = pathTokens[pathTokens.length - 2];
            Severity: Minor
            Found in src/extension/documenter.file.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