jefer94/choco

View on GitHub

Showing 266 of 266 total issues

Similar blocks of code found in 6 locations. Consider refactoring.
Open

test('fetch user1 without shared projects 2', async () => {
  const message = {
    user: userId1
  }
  const msg = await SendCommand(actions.fetchShareProjects, message)
Severity: Major
Found in services/projects/src/server.test.ts and 5 other locations - About 1 hr to fix
services/projects/src/server.test.ts on lines 62..68
services/projects/src/server.test.ts on lines 70..76
services/projects/src/server.test.ts on lines 150..156
services/projects/src/server.test.ts on lines 158..164
services/projects/src/server.test.ts on lines 203..209

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 66.

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

Similar blocks of code found in 6 locations. Consider refactoring.
Open

test('fetch user1 without codes', async () => {
  const message = {
    project: projectId1
  }
  const msg = await SendCommand(actions.fetchOwnCodes, message)
Severity: Major
Found in services/projects/src/server.test.ts and 5 other locations - About 1 hr to fix
services/projects/src/server.test.ts on lines 62..68
services/projects/src/server.test.ts on lines 70..76
services/projects/src/server.test.ts on lines 142..148
services/projects/src/server.test.ts on lines 158..164
services/projects/src/server.test.ts on lines 203..209

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 66.

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

Similar blocks of code found in 6 locations. Consider refactoring.
Open

test('fetch user2 without projects', async () => {
  const message = {
    user: userId2
  }
  const msg = await SendCommand(actions.fetchOwnProjects, message)
Severity: Major
Found in services/projects/src/server.test.ts and 5 other locations - About 1 hr to fix
services/projects/src/server.test.ts on lines 62..68
services/projects/src/server.test.ts on lines 70..76
services/projects/src/server.test.ts on lines 142..148
services/projects/src/server.test.ts on lines 150..156
services/projects/src/server.test.ts on lines 158..164

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 66.

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

Similar blocks of code found in 6 locations. Consider refactoring.
Open

test('fetch user1 without shared projects 1', async () => {
  const message = {
    user: userId1
  }
  const msg = await SendCommand(actions.fetchShareProjects, message)
Severity: Major
Found in services/projects/src/server.test.ts and 5 other locations - About 1 hr to fix
services/projects/src/server.test.ts on lines 62..68
services/projects/src/server.test.ts on lines 142..148
services/projects/src/server.test.ts on lines 150..156
services/projects/src/server.test.ts on lines 158..164
services/projects/src/server.test.ts on lines 203..209

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 66.

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

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

export default function en(): void {
  locale.set(lang, 'menu', 'Menu')
  locale.set(lang, 'addTab', 'Add tab')
  locale.set(lang, 'removeTab', 'Remove tab')
  locale.set(lang, 'editor', 'Editor')
Severity: Major
Found in services/algorithm/src/lang/en.ts and 1 other location - About 1 hr to fix
services/algorithm/src/lang/es.ts on lines 5..10

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 66.

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

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

export default function es(): void {
  locale.set(lang, 'menu', 'Menú')
  locale.set(lang, 'addTab', 'Agregar pestaña')
  locale.set(lang, 'removeTab', 'Eliminar pestaña')
  locale.set(lang, 'editor', 'Editor')
Severity: Major
Found in services/algorithm/src/lang/es.ts and 1 other location - About 1 hr to fix
services/algorithm/src/lang/en.ts on lines 5..10

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 66.

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

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

test('get user1 codes that not exist', async () => {
  const message = {
    id: codeId1
  }
  const msg = await SendCommand(actions.getProjectPermission, message)
Severity: Major
Found in services/projects/src/server.test.ts and 1 other location - About 1 hr to fix
services/projects/src/server.test.ts on lines 503..509

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 65.

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

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

test('get user1 project that not exist', async () => {
  const message = {
    id: codeId1
  }
  const msg = await SendCommand(actions.getProjectPermission, message)
Severity: Major
Found in services/projects/src/server.test.ts and 1 other location - About 1 hr to fix
services/projects/src/server.test.ts on lines 465..471

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 65.

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 ProjectCardSkeleton has 37 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export default function ProjectCardSkeleton(): ReactElement {
  const classes = useStyles()

  return (
    <Card className={classes.root}>
Severity: Minor
Found in services/algorithm/src/components/ProjectCardSkeleton.tsx - About 1 hr to fix

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

    export default function Login(): ReactElement {
      // router.prefetch('/dashboard')
      return (
        <>
          <Head title="Algorithm - Register" />
    Severity: Major
    Found in services/algorithm/src/pages/register.tsx and 1 other location - About 1 hr to fix
    services/algorithm/src/pages/login.tsx on lines 11..20

    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 64.

    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

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

    export default function Login(): ReactElement {
      // router.prefetch('/dashboard')
      return (
        <>
          <Head title="Algorithm - Register" />
    Severity: Major
    Found in services/algorithm/src/pages/login.tsx and 1 other location - About 1 hr to fix
    services/algorithm/src/pages/register.tsx on lines 11..20

    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 64.

    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 write has 36 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    export function write(...args: readonly WriteInput[]): IoLine {
      const error = locale.one<LangError>('error')
      // var
      let result = ''
      let err
    Severity: Minor
    Found in packages/algorithm-transpiler/src/io.ts - About 1 hr to fix

      Function ProjectCard has 36 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      export default function ProjectCard(): ReactElement {
        const classes = useStyles()
      
        return (
          <Card className={classes.root}>
      Severity: Minor
      Found in services/algorithm/src/components/ProjectCard.tsx - About 1 hr to fix

        Function server has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
        Open

        export default async function server(): Promise<void> {
          const nc = await connect(process.env.BROKER ?
            { servers: process.env.BROKER } : {})
        
          nc.subscribe(host, { callback: async (err, msg) => {
        Severity: Minor
        Found in services/cache/src/server.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

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

          locale.set(lang, 'typeError', {
            // type : string in es
            int: 'Error: don\'t is integer',
            double: 'Error: don\'t is float',
            string: 'Error: don\'t is string',
        Severity: Major
        Found in packages/algorithm-transpiler/src/lang/en.ts and 1 other location - About 1 hr to fix
        packages/algorithm-transpiler/src/lang/es.ts on lines 77..84

        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 62.

        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

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

          locale.set(lang, 'typeError', {
            // type : string in es
            int: 'Error: no es entero',
            double: 'Error: no es flotante',
            string: 'Error: no es una cadena',
        Severity: Major
        Found in packages/algorithm-transpiler/src/lang/es.ts and 1 other location - About 1 hr to fix
        packages/algorithm-transpiler/src/lang/en.ts on lines 77..84

        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 62.

        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

                return {
                  // eslint-disable-next-line no-underscore-dangle
                  user: user._id,
                  token: jwt.sign({ user: user._id }, 'f1BtnWgD3VKY', {
                    // expiresIn: 3600 * 24 * 7,
        Severity: Major
        Found in services/accounts/src/server.ts and 1 other location - About 1 hr to fix
        services/accounts/src/server.ts on lines 84..93

        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 62.

        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

              return {
                // eslint-disable-next-line no-underscore-dangle
                user: user._id,
                token: jwt.sign({ user: user._id }, 'f1BtnWgD3VKY', {
                  // expiresIn: 3600 * 24 * 7,
        Severity: Major
        Found in services/accounts/src/server.ts and 1 other location - About 1 hr to fix
        services/accounts/src/server.ts on lines 67..76

        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 62.

        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

        Similar blocks of code found in 6 locations. Consider refactoring.
        Open

        export default async function fetchOwnCodes(project: string):
          Promise<FetchOwnCodes> {
          return { data: await Code.find({ project }).lean() }
        }
        Severity: Major
        Found in services/projects/src/actions/fetchOwnCodes.ts and 5 other locations - About 1 hr to fix
        services/projects/src/actions/fetchOwnProjects.ts on lines 12..14
        services/projects/src/actions/fetchShareCodes.ts on lines 12..14
        services/projects/src/actions/getCode.ts on lines 12..14
        services/projects/src/actions/getProject.ts on lines 12..14
        services/projects/src/actions/getProjectPermission.ts on lines 11..13

        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 61.

        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

        function transform(): Record<string, unknown> {
          // eslint-disable-next-line @typescript-eslint/no-unused-vars
          const { _id, __v, ...obj } = this.toObject()
          return { id: _id, ...obj }
        }
        Severity: Major
        Found in services/authenticator/src/models/Scope.ts and 2 other locations - About 1 hr to fix
        services/accounts/src/models/Scope.ts on lines 15..19
        services/authenticator/src/models/Token.ts on lines 19..23

        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 61.

        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