fission-suite/webnative

View on GitHub

Showing 98 of 283 total issues

Avoid too many return statements within this function.
Open

    return parseResult
Severity: Major
Found in src/linking/consumer.ts - About 30 mins to fix

    Avoid too many return statements within this function.
    Open

          return null
    Severity: Major
    Found in src/fs/v1/PublicTree.ts - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

            return { ok: false, error: new LinkingError("Consumer received a closed UCAN session key does not match the session key") }
      Severity: Major
      Found in src/linking/consumer.ts - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

            return CID.parse(val[ "/" ])
        Severity: Major
        Found in src/common/cid.ts - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

              return reloadedNext === undefined ? null : this.getRecurse(reloadedNext, rest)
          Severity: Major
          Found in src/fs/v1/PrivateTree.ts - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

                return parseResult
            Severity: Major
            Found in src/linking/consumer.ts - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                  return child
              Severity: Major
              Found in src/fs/v1/PublicTree.ts - About 30 mins to fix

                Avoid too many return statements within this function.
                Open

                      return this.getRecurse(child.subSkeleton, nextPath)
                Severity: Major
                Found in src/fs/v1/PublicTree.ts - About 30 mins to fix

                  Avoid too many return statements within this function.
                  Open

                        return { ok: false, error: new LinkingError("Consumer received a closed UCAN that was missing a session key in facts.") }
                  Severity: Major
                  Found in src/linking/consumer.ts - About 30 mins to fix

                    Avoid too many return statements within this function.
                    Open

                      return ucan || null
                    Severity: Major
                    Found in src/capabilities.ts - About 30 mins to fix

                      Avoid too many return statements within this function.
                      Open

                          return { ok: true, value: sessionKey }
                      Severity: Major
                      Found in src/linking/consumer.ts - About 30 mins to fix

                        Avoid too many return statements within this function.
                        Open

                            if (!hasRaw) return null
                        Severity: Major
                        Found in src/capabilities.ts - About 30 mins to fix

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

                            async runOnChildTree(node: Tree, relPath: Path.Segments, fn: (tree: Tree) => Promise<Tree>): Promise<Tree> {
                              let tree = node
                          
                              if (relPath.length) {
                                if (!await tree.exists(relPath)) await tree.mkdir(relPath)
                          Severity: Minor
                          Found in src/fs/filesystem.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 resolveSoftLink has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                          Open

                            static async resolveSoftLink(
                              crypto: Crypto.Implementation,
                              depot: Depot.Implementation,
                              manners: Manners.Implementation,
                              reference: Reference.Implementation,
                          Severity: Minor
                          Found in src/fs/v1/PrivateTree.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 getPath has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                          Open

                          export const getPath = (skeleton: Skeleton, path: NonEmptyPath): SkeletonInfo | SoftLink | null => {
                            const head = path[0]
                            const child = skeleton[head] || null
                            const nextPath = nextNonEmpty(path)
                            if (child === null || nextPath === null || isSoftLink(child)) {
                          Severity: Minor
                          Found in src/fs/protocol/public/skeleton.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 runMutationOnNode has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                          Open

                            async runMutationOnNode(
                              path: DistinctivePath<Partitioned<Partition>>,
                              handlers: {
                                public(root: UnixTree, relPath: Path.Segments): Promise<void>
                                private(node: PrivateTree | PrivateFile, relPath: Path.Segments): Promise<void>
                          Severity: Minor
                          Found in src/fs/filesystem.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 putLinks has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                          Open

                          export const putLinks = async (
                            depot: Depot.Implementation,
                            links: Links | SimpleLinks
                          ): Promise<Depot.PutResult> => {
                            const dagLinks = Object
                          Severity: Minor
                          Found in src/fs/protocol/basic.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 runOnNode has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                          Open

                            async runOnNode<A>(
                              path: DistinctivePath<Partitioned<Partition>>,
                              handlers: {
                                public(root: UnixTree, relPath: Path.Segments): Promise<A>
                                private(node: Tree | File, relPath: Path.Segments): Promise<A>
                          Severity: Minor
                          Found in src/fs/filesystem.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