BetterTyped/hyper-fetch

View on GitHub

Showing 248 of 345 total issues

Avoid too many return statements within this function.
Open

    return false;
Severity: Major
Found in packages/react/src/utils/deep-equal.utils.ts - About 30 mins to fix

    Avoid too many return statements within this function.
    Open

          return endAt(value);
    Severity: Major
    Found in packages/adapter-firebase/src/realtime/utils/constraints.utils.ts - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

            return startAfter(value);
      Severity: Major
      Found in packages/adapter-firebase/src/realtime/utils/constraints.utils.ts - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

              return ref.endBefore(value);
        Severity: Major
        Found in packages/adapter-firebase-admin/src/realtime/utils/constraints.utils.ts - About 30 mins to fix

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

          export const sseAdapter: SSEAdapterType = (socket) => {
            const {
              open,
              reconnectionAttempts,
              listeners,
          Severity: Minor
          Found in packages/sockets/src/adapter/adapter.sse.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 interceptResponse has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

          export const interceptResponse = async <GlobalErrorType, Adapter extends AdapterInstance>(
            interceptors: ResponseInterceptorType[],
            response: ResponseReturnType<any, GlobalErrorType, Adapter>,
            request: RequestInstance,
          ) => {
          Severity: Minor
          Found in packages/core/src/client/client.utils.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 isValidValue has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

          const isValidValue = (options: QueryStringifyOptionsType) => {
            return (value: QueryParamType) => {
              const { skipNull, skipEmptyString } = options;
          
              if (skipEmptyString && value === undefined) {
          Severity: Minor
          Found in packages/core/src/client/client.utils.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 interceptRequest has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

          export const interceptRequest = async (interceptors: RequestInterceptorType[], request: RequestInstance) => {
            let newRequest = request;
            if (!request.requestOptions.disableRequestInterceptors) {
              // eslint-disable-next-line no-restricted-syntax
              for (const interceptor of interceptors) {
          Severity: Minor
          Found in packages/core/src/client/client.utils.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