vorteil/direktiv

View on GitHub

Showing 467 of 1,322 total issues

Avoid too many return statements within this function.
Open

    return (
      <Card className="m-5 flex grow">
        <NoPermissions>{noPermissionMessage}</NoPermissions>
      </Card>
    );
Severity: Major
Found in ui/src/pages/namespace/Explorer/Endpoint/index.tsx - About 30 mins to fix

    Avoid too many return statements within this function.
    Open

        return (
          <Card className="m-5 flex grow">
            <NoPermissions>{noPermissionMessage}</NoPermissions>
          </Card>
        );
    Severity: Major
    Found in ui/src/pages/namespace/Explorer/Consumer/index.tsx - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

        return (
          <>
            <div className="border-b border-gray-5 bg-gray-1 p-5 dark:border-gray-dark-5 dark:bg-gray-dark-1">
              <div className="flex flex-col gap-5 max-sm:space-y-4 sm:flex-row sm:items-center sm:justify-between">
                <h3 className="flex items-center gap-x-2 font-bold text-primary-500">
      Severity: Major
      Found in ui/src/pages/namespace/Explorer/Service/index.tsx - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

          return (
            <>
              <div className="border-b border-gray-5 bg-gray-1 p-5 dark:border-gray-dark-5 dark:bg-gray-dark-1">
                <div className="flex flex-col gap-5 max-sm:space-y-4 sm:flex-row sm:items-center sm:justify-between">
                  <h3 className="flex items-center gap-x-2 font-bold text-primary-500">
        Severity: Major
        Found in ui/src/pages/namespace/Explorer/Consumer/index.tsx - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

              return (
                <Card className="m-5 flex grow">
                  <NoPermissions>{noPermissionMessage}</NoPermissions>
                </Card>
              );
          Severity: Major
          Found in ui/src/pages/namespace/Explorer/Service/index.tsx - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

              return (
                <>
                  <div className="space-y-5 border-b border-gray-5 bg-gray-1 p-5 pb-0 dark:border-gray-dark-5 dark:bg-gray-dark-1">
                    <div className="flex flex-col max-sm:space-y-4 sm:flex-row sm:items-center sm:justify-between">
                      <h3
            Severity: Major
            Found in ui/src/pages/namespace/Explorer/Workflow/index.tsx - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                return [...startSegment, ...activeSegment, ...endSegment];
              Severity: Major
              Found in ui/src/components/Pagination/describePagination.ts - About 30 mins to fix

                Avoid too many return statements within this function.
                Open

                  if (!servicesList) return null;
                Severity: Major
                Found in ui/src/pages/namespace/Explorer/Service/index.tsx - About 30 mins to fix

                  Avoid too many return statements within this function.
                  Open

                      return new editorWorker();
                  Severity: Major
                  Found in ui/src/design/Editor/index.tsx - About 30 mins to fix

                    Avoid too many return statements within this function.
                    Open

                      return (
                        <>
                          <Header mirror={mirror} loading={!!pendingSyncs.length} />
                          <PaginationProvider items={syncs} pageSize={pageSize}>
                            {({
                    Severity: Major
                    Found in ui/src/pages/namespace/Mirror/Detail/index.tsx - About 30 mins to fix

                      Method eventsAndLogic.Run has a Cognitive Complexity of 21 (exceeds 20 allowed). Consider refactoring.
                      Open

                      func (logic *eventsAndLogic) Run(ctx context.Context, wakedata []byte) (*Transition, error) {
                          first, err := scheduleTwice(logic, wakedata)
                          if err != nil {
                              return nil, err
                          }
                      Severity: Minor
                      Found in pkg/flow/states/eventsAnd.go - 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 truth has a Cognitive Complexity of 21 (exceeds 20 allowed). Consider refactoring.
                      Open

                      func truth(x interface{}) bool {
                          var success bool
                      
                          if x != nil { //nolint:nestif
                              switch v := x.(type) {
                      Severity: Minor
                      Found in pkg/flow/states/helpers.go - 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

                      Method JSOutboundPlugin.ExecutePlugin has a Cognitive Complexity of 21 (exceeds 20 allowed). Consider refactoring.
                      Open

                      func (js *JSOutboundPlugin) ExecutePlugin(_ *core.ConsumerFile,
                          w http.ResponseWriter, r *http.Request,
                      ) bool {
                          var (
                              err error
                      Severity: Minor
                      Found in pkg/refactor/gateway/plugins/outbound/js.go - 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

                      Method JSOutboundPlugin.Execute has a Cognitive Complexity of 21 (exceeds 20 allowed). Consider refactoring.
                      Open

                      func (js *JSOutboundPlugin) Execute(w http.ResponseWriter, r *http.Request) *http.Request {
                          var (
                              err error
                              b   []byte
                          )
                      Severity: Minor
                      Found in pkg/refactor/gateway2/plugins/outbound/js.go - 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 NewWorkflow has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                      Open

                      const NewWorkflow = ({
                        path,
                        close,
                        unallowedNames,
                      }: {

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

                      export default function WorkflowDiagram(props: WorkflowDiagramProps) {
                        const {
                          workflow,
                          flow = [],
                          instanceStatus = "pending",
                      Severity: Minor
                      Found in ui/src/design/WorkflowDiagram/index.tsx - 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 AuthPluginForm has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                      Open

                      export const AuthPluginForm: FC<AuthPluginFormProps> = ({
                        formControls,
                        onSave,
                      }) => {
                        const { t } = useTranslation();

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

                      export const State: FC<StateProps> = ({ data }) => {
                        const { label, type, wasExecuted, orientation } = data;
                        return (
                          <Card
                            className={twMergeClsx(
                      Severity: Minor
                      Found in ui/src/design/WorkflowDiagram/nodes.tsx - 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 useStreaming has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                      Open

                      export const useStreaming = <T>({
                        url,
                        apiKey,
                        enabled,
                        schema,
                      Severity: Minor
                      Found in ui/src/api/streaming.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 GroupsPage has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                      Open

                      const GroupsPage = () => {
                        const { t } = useTranslation();
                        const { data, isFetched, isAllowed, noPermissionMessage } = useGroups();
                        const noResults = isFetched && data?.groups.length === 0;
                        const [dialogOpen, setDialogOpen] = useState(false);
                      Severity: Minor
                      Found in ui/src/pages/namespace/Permissions/Groups/index.tsx - 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