pankod/refine

View on GitHub

Showing 959 of 983 total issues

Identical blocks of code found in 2 locations. Consider refactoring.
Open

  const renderedFields: Array<string | undefined> = fields.map((field) => {
    switch (field?.type) {
      case "text":
        return textFields(field);
      case "number":
Severity: Major
Found in packages/inferencer/src/inferencers/antd/show.tsx and 1 other location - About 5 hrs to fix
packages/inferencer/src/inferencers/mui/show.tsx on lines 630..653

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 146.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Identical blocks of code found in 2 locations. Consider refactoring.
Open

  const renderedFields: Array<string | undefined> = fields.map((field) => {
    switch (field?.type) {
      case "text":
        return textFields(field);
      case "number":
Severity: Major
Found in packages/inferencer/src/inferencers/mui/show.tsx and 1 other location - About 5 hrs to fix
packages/inferencer/src/inferencers/antd/show.tsx on lines 546..569

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 146.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Identical blocks of code found in 3 locations. Consider refactoring.
Open

  React.useEffect(() => {
    if (typeof window !== "undefined") {
      const messageListener = (event: MessageEvent) => {
        if (event.data.type === "UPDATE_DYNAMIC_VALUES") {
          if (event.data.payload.theme) {
Severity: Major
Found in packages/live-previews/src/scope/antd.tsx and 2 other locations - About 5 hrs to fix
packages/live-previews/src/scope/chakra.tsx on lines 125..143
packages/live-previews/src/scope/mantine.tsx on lines 133..151

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 145.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Identical blocks of code found in 3 locations. Consider refactoring.
Open

  React.useEffect(() => {
    if (typeof window !== "undefined") {
      const messageListener = (event: MessageEvent) => {
        if (event.data.type === "UPDATE_DYNAMIC_VALUES") {
          if (event.data.payload.theme) {
Severity: Major
Found in packages/live-previews/src/scope/mantine.tsx and 2 other locations - About 5 hrs to fix
packages/live-previews/src/scope/antd.tsx on lines 131..149
packages/live-previews/src/scope/chakra.tsx on lines 125..143

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 145.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Identical blocks of code found in 3 locations. Consider refactoring.
Open

  React.useEffect(() => {
    if (typeof window !== "undefined") {
      const messageListener = (event: MessageEvent) => {
        if (event.data.type === "UPDATE_DYNAMIC_VALUES") {
          if (event.data.payload.theme) {
Severity: Major
Found in packages/live-previews/src/scope/chakra.tsx and 2 other locations - About 5 hrs to fix
packages/live-previews/src/scope/antd.tsx on lines 131..149
packages/live-previews/src/scope/mantine.tsx on lines 133..151

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 145.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Function renderTreeView has 137 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  const renderTreeView = (tree: ITreeMenu[], selectedKey?: string) => {
    return tree.map((item: ITreeMenu) => {
      const { icon, label, route, name, children, parentName, meta, options } =
        item;
      const isOpen = open[item.key || ""] || false;
Severity: Major
Found in packages/mui/src/components/layout/sider/index.tsx - About 5 hrs to fix

    Identical blocks of code found in 10 locations. Consider refactoring.
    Open

    export default defineConfig({
      entry: ["src/index.ts"],
      splitting: false,
      sourcemap: true,
      clean: false,
    Severity: Major
    Found in packages/medusa/tsup.config.ts and 9 other locations - About 5 hrs to fix
    packages/ably/tsup.config.ts on lines 4..27
    packages/airtable/tsup.config.ts on lines 4..27
    packages/appwrite/tsup.config.ts on lines 4..27
    packages/graphql/tsup.config.ts on lines 4..27
    packages/nestjsx-crud/tsup.config.ts on lines 4..27
    packages/simple-rest/tsup.config.ts on lines 4..27
    packages/strapi-v4/tsup.config.ts on lines 4..27
    packages/strapi/tsup.config.ts on lines 4..27
    packages/supabase/tsup.config.ts on lines 4..27

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 144.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Identical blocks of code found in 4 locations. Consider refactoring.
    Open

    export const ThemedLayoutContextProvider: React.FC<{
      children: ReactNode;
      initialSiderCollapsed?: boolean;
    }> = ({ children, initialSiderCollapsed }) => {
      const [siderCollapsed, setSiderCollapsed] = useState(
    packages/antd/src/contexts/themedLayoutContext/index.tsx on lines 12..33
    packages/mantine/src/contexts/themedLayoutContext/index.tsx on lines 12..33
    packages/mui/src/contexts/themedLayoutContext/index.tsx on lines 12..33

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 144.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Identical blocks of code found in 10 locations. Consider refactoring.
    Open

    export default defineConfig({
      entry: ["src/index.ts"],
      splitting: false,
      sourcemap: true,
      clean: false,
    Severity: Major
    Found in packages/appwrite/tsup.config.ts and 9 other locations - About 5 hrs to fix
    packages/ably/tsup.config.ts on lines 4..27
    packages/airtable/tsup.config.ts on lines 4..27
    packages/graphql/tsup.config.ts on lines 4..27
    packages/medusa/tsup.config.ts on lines 4..27
    packages/nestjsx-crud/tsup.config.ts on lines 4..27
    packages/simple-rest/tsup.config.ts on lines 4..27
    packages/strapi-v4/tsup.config.ts on lines 4..27
    packages/strapi/tsup.config.ts on lines 4..27
    packages/supabase/tsup.config.ts on lines 4..27

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 144.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Identical blocks of code found in 10 locations. Consider refactoring.
    Open

    export default defineConfig({
      entry: ["src/index.ts"],
      splitting: false,
      sourcemap: true,
      clean: false,
    Severity: Major
    Found in packages/airtable/tsup.config.ts and 9 other locations - About 5 hrs to fix
    packages/ably/tsup.config.ts on lines 4..27
    packages/appwrite/tsup.config.ts on lines 4..27
    packages/graphql/tsup.config.ts on lines 4..27
    packages/medusa/tsup.config.ts on lines 4..27
    packages/nestjsx-crud/tsup.config.ts on lines 4..27
    packages/simple-rest/tsup.config.ts on lines 4..27
    packages/strapi-v4/tsup.config.ts on lines 4..27
    packages/strapi/tsup.config.ts on lines 4..27
    packages/supabase/tsup.config.ts on lines 4..27

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 144.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Identical blocks of code found in 4 locations. Consider refactoring.
    Open

    export const ThemedLayoutContextProvider: React.FC<{
      children: ReactNode;
      initialSiderCollapsed?: boolean;
    }> = ({ children, initialSiderCollapsed }) => {
      const [siderCollapsed, setSiderCollapsed] = useState(
    Severity: Major
    Found in packages/mui/src/contexts/themedLayoutContext/index.tsx and 3 other locations - About 5 hrs to fix
    packages/antd/src/contexts/themedLayoutContext/index.tsx on lines 12..33
    packages/chakra-ui/src/contexts/themedLayoutContext/index.tsx on lines 12..33
    packages/mantine/src/contexts/themedLayoutContext/index.tsx on lines 12..33

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 144.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Identical blocks of code found in 10 locations. Consider refactoring.
    Open

    export default defineConfig({
      entry: ["src/index.ts"],
      splitting: false,
      sourcemap: true,
      clean: false,
    Severity: Major
    Found in packages/graphql/tsup.config.ts and 9 other locations - About 5 hrs to fix
    packages/ably/tsup.config.ts on lines 4..27
    packages/airtable/tsup.config.ts on lines 4..27
    packages/appwrite/tsup.config.ts on lines 4..27
    packages/medusa/tsup.config.ts on lines 4..27
    packages/nestjsx-crud/tsup.config.ts on lines 4..27
    packages/simple-rest/tsup.config.ts on lines 4..27
    packages/strapi-v4/tsup.config.ts on lines 4..27
    packages/strapi/tsup.config.ts on lines 4..27
    packages/supabase/tsup.config.ts on lines 4..27

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 144.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Identical blocks of code found in 10 locations. Consider refactoring.
    Open

    export default defineConfig({
      entry: ["src/index.ts"],
      splitting: false,
      sourcemap: true,
      clean: false,
    Severity: Major
    Found in packages/ably/tsup.config.ts and 9 other locations - About 5 hrs to fix
    packages/airtable/tsup.config.ts on lines 4..27
    packages/appwrite/tsup.config.ts on lines 4..27
    packages/graphql/tsup.config.ts on lines 4..27
    packages/medusa/tsup.config.ts on lines 4..27
    packages/nestjsx-crud/tsup.config.ts on lines 4..27
    packages/simple-rest/tsup.config.ts on lines 4..27
    packages/strapi-v4/tsup.config.ts on lines 4..27
    packages/strapi/tsup.config.ts on lines 4..27
    packages/supabase/tsup.config.ts on lines 4..27

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 144.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Identical blocks of code found in 10 locations. Consider refactoring.
    Open

    export default defineConfig({
      entry: ["src/index.ts"],
      splitting: false,
      sourcemap: true,
      clean: false,
    Severity: Major
    Found in packages/supabase/tsup.config.ts and 9 other locations - About 5 hrs to fix
    packages/ably/tsup.config.ts on lines 4..27
    packages/airtable/tsup.config.ts on lines 4..27
    packages/appwrite/tsup.config.ts on lines 4..27
    packages/graphql/tsup.config.ts on lines 4..27
    packages/medusa/tsup.config.ts on lines 4..27
    packages/nestjsx-crud/tsup.config.ts on lines 4..27
    packages/simple-rest/tsup.config.ts on lines 4..27
    packages/strapi-v4/tsup.config.ts on lines 4..27
    packages/strapi/tsup.config.ts on lines 4..27

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 144.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Identical blocks of code found in 4 locations. Consider refactoring.
    Open

    export const ThemedLayoutContextProvider: React.FC<{
      children: ReactNode;
      initialSiderCollapsed?: boolean;
    }> = ({ children, initialSiderCollapsed }) => {
      const [siderCollapsed, setSiderCollapsed] = useState(
    Severity: Major
    Found in packages/mantine/src/contexts/themedLayoutContext/index.tsx and 3 other locations - About 5 hrs to fix
    packages/antd/src/contexts/themedLayoutContext/index.tsx on lines 12..33
    packages/chakra-ui/src/contexts/themedLayoutContext/index.tsx on lines 12..33
    packages/mui/src/contexts/themedLayoutContext/index.tsx on lines 12..33

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 144.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Identical blocks of code found in 10 locations. Consider refactoring.
    Open

    export default defineConfig({
      entry: ["src/index.ts"],
      splitting: false,
      sourcemap: true,
      clean: false,
    Severity: Major
    Found in packages/nestjsx-crud/tsup.config.ts and 9 other locations - About 5 hrs to fix
    packages/ably/tsup.config.ts on lines 4..27
    packages/airtable/tsup.config.ts on lines 4..27
    packages/appwrite/tsup.config.ts on lines 4..27
    packages/graphql/tsup.config.ts on lines 4..27
    packages/medusa/tsup.config.ts on lines 4..27
    packages/simple-rest/tsup.config.ts on lines 4..27
    packages/strapi-v4/tsup.config.ts on lines 4..27
    packages/strapi/tsup.config.ts on lines 4..27
    packages/supabase/tsup.config.ts on lines 4..27

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 144.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Identical blocks of code found in 10 locations. Consider refactoring.
    Open

    export default defineConfig({
      entry: ["src/index.ts"],
      splitting: false,
      sourcemap: true,
      clean: false,
    Severity: Major
    Found in packages/strapi-v4/tsup.config.ts and 9 other locations - About 5 hrs to fix
    packages/ably/tsup.config.ts on lines 4..27
    packages/airtable/tsup.config.ts on lines 4..27
    packages/appwrite/tsup.config.ts on lines 4..27
    packages/graphql/tsup.config.ts on lines 4..27
    packages/medusa/tsup.config.ts on lines 4..27
    packages/nestjsx-crud/tsup.config.ts on lines 4..27
    packages/simple-rest/tsup.config.ts on lines 4..27
    packages/strapi/tsup.config.ts on lines 4..27
    packages/supabase/tsup.config.ts on lines 4..27

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 144.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Identical blocks of code found in 4 locations. Consider refactoring.
    Open

    export const ThemedLayoutContextProvider: React.FC<{
      children: ReactNode;
      initialSiderCollapsed?: boolean;
    }> = ({ children, initialSiderCollapsed }) => {
      const [siderCollapsed, setSiderCollapsed] = useState(
    Severity: Major
    Found in packages/antd/src/contexts/themedLayoutContext/index.tsx and 3 other locations - About 5 hrs to fix
    packages/chakra-ui/src/contexts/themedLayoutContext/index.tsx on lines 12..33
    packages/mantine/src/contexts/themedLayoutContext/index.tsx on lines 12..33
    packages/mui/src/contexts/themedLayoutContext/index.tsx on lines 12..33

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 144.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Identical blocks of code found in 10 locations. Consider refactoring.
    Open

    export default defineConfig({
      entry: ["src/index.ts"],
      splitting: false,
      sourcemap: true,
      clean: false,
    Severity: Major
    Found in packages/simple-rest/tsup.config.ts and 9 other locations - About 5 hrs to fix
    packages/ably/tsup.config.ts on lines 4..27
    packages/airtable/tsup.config.ts on lines 4..27
    packages/appwrite/tsup.config.ts on lines 4..27
    packages/graphql/tsup.config.ts on lines 4..27
    packages/medusa/tsup.config.ts on lines 4..27
    packages/nestjsx-crud/tsup.config.ts on lines 4..27
    packages/strapi-v4/tsup.config.ts on lines 4..27
    packages/strapi/tsup.config.ts on lines 4..27
    packages/supabase/tsup.config.ts on lines 4..27

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 144.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Identical blocks of code found in 10 locations. Consider refactoring.
    Open

    export default defineConfig({
      entry: ["src/index.ts"],
      splitting: false,
      sourcemap: true,
      clean: false,
    Severity: Major
    Found in packages/strapi/tsup.config.ts and 9 other locations - About 5 hrs to fix
    packages/ably/tsup.config.ts on lines 4..27
    packages/airtable/tsup.config.ts on lines 4..27
    packages/appwrite/tsup.config.ts on lines 4..27
    packages/graphql/tsup.config.ts on lines 4..27
    packages/medusa/tsup.config.ts on lines 4..27
    packages/nestjsx-crud/tsup.config.ts on lines 4..27
    packages/simple-rest/tsup.config.ts on lines 4..27
    packages/strapi-v4/tsup.config.ts on lines 4..27
    packages/supabase/tsup.config.ts on lines 4..27

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 144.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Severity
    Category
    Status
    Source
    Language