department-of-veterans-affairs/vets-website

View on GitHub

Showing 12,803 of 12,803 total issues

Function renderAdditionalInfo has 123 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export const renderAdditionalInfo = deductionCode => {
  switch (deductionCode) {
    case '30':
      return (
        <section className="vads-u-font-family--sans">

    Function Folders has 123 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    const Folders = () => {
      const dispatch = useDispatch();
      const location = useLocation();
      const alertList = useSelector(state => state.sm.alerts?.alertList);
      const folders = useSelector(state => state.sm.folders.folderList);
    Severity: Major
    Found in src/applications/mhv-secure-messaging/containers/Folders.jsx - About 4 hrs to fix

      Function ContactInfoPage has 123 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      export default function ContactInfoPage() {
        const pageTitle = useSelector(state => getPageTitle(state, pageKey));
      
        const history = useHistory();
        const dispatch = useDispatch();
      Severity: Major
      Found in src/applications/vaos/new-appointment/components/ContactInfoPage.jsx - About 4 hrs to fix

        Function MicroDetails has 123 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        const MicroDetails = props => {
          const { record, fullState, runningUnitTest } = props;
          const user = useSelector(state => state.user.profile);
          const allowTxtDownloads = useSelector(
            state =>

          Function fetchFlowEligibilityAndClinics has a Cognitive Complexity of 33 (exceeds 5 allowed). Consider refactoring.
          Open

          export async function fetchFlowEligibilityAndClinics({
            typeOfCare,
            location,
            directSchedulingEnabled,
            useV2 = false,
          Severity: Minor
          Found in src/applications/vaos/services/patient/index.js - About 4 hrs 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 ResultCard has a Cognitive Complexity of 33 (exceeds 5 allowed). Consider refactoring.
          Open

          export function ResultCard({
            compare,
            estimated,
            dispatchAddCompareInstitution,
            dispatchRemoveCompareInstitution,
          Severity: Minor
          Found in src/applications/gi/containers/search/ResultCard.jsx - About 4 hrs 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

          File VerifyEnrollmentsPage.jsx has 371 lines of code (exceeds 250 allowed). Consider refactoring.
          Open

          import React, { useCallback, useEffect, useMemo, useState } from 'react';
          import PropTypes from 'prop-types';
          import { connect, useDispatch } from 'react-redux';
          import { useHistory } from 'react-router-dom';
          
          

            File form.js has 371 lines of code (exceeds 250 allowed). Consider refactoring.
            Open

            import environment from 'platform/utilities/environment';
            import footerContent from 'platform/forms/components/FormFooter';
            import { scrollAndFocus } from 'platform/utilities/ui';
            
            import manifest from '../manifest.json';
            Severity: Minor
            Found in src/applications/simple-forms/21-10210/config/form.js - About 4 hrs to fix

              File MOCK_VA_APPOINTMENTS.js has 371 lines of code (exceeds 250 allowed). Consider refactoring.
              Open

              import { addDays, formatISO } from 'date-fns';
              
              export default {
                data: [
                  {

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

                  const removeFile = (index, focusAddButton = true) => {
                    const newFileList = props.formData.filter((__, idx) => index !== idx);
                    if (!newFileList.length) {
                      props.onChange();
                    } else {
                Severity: Major
                Found in src/applications/pre-need/components/FileField.jsx and 3 other locations - About 4 hrs to fix
                src/applications/appeals/shared/components/FileField.jsx on lines 297..315
                src/applications/simple-forms/40-0247/components/FileField.jsx on lines 357..375
                src/platform/forms-system/src/js/fields/FileField.jsx on lines 344..362

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

                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

                  const removeFile = (index, focusAddButton = true) => {
                    const newFileList = props.formData.filter((__, idx) => index !== idx);
                    if (!newFileList.length) {
                      props.onChange();
                    } else {
                Severity: Major
                Found in src/platform/forms-system/src/js/fields/FileField.jsx and 3 other locations - About 4 hrs to fix
                src/applications/appeals/shared/components/FileField.jsx on lines 297..315
                src/applications/pre-need/components/FileField.jsx on lines 345..363
                src/applications/simple-forms/40-0247/components/FileField.jsx on lines 357..375

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

                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

                  const removeFile = (index, focusAddButton = true) => {
                    const newFileList = props.formData.filter((__, idx) => index !== idx);
                    if (!newFileList.length) {
                      props.onChange();
                    } else {
                src/applications/appeals/shared/components/FileField.jsx on lines 297..315
                src/applications/pre-need/components/FileField.jsx on lines 345..363
                src/platform/forms-system/src/js/fields/FileField.jsx on lines 344..362

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

                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 10 locations. Consider refactoring.
                Open

                  VACCINATED_ADDITIONAL_DETAILS5: {
                    'ui:title': (
                      <span>
                        <strong>Which vaccine did you receive?</strong>
                      </span>
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 333..356
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 395..418
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 457..480
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 519..542
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 581..604
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 169..192
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 231..254
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 293..316
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 355..378

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

                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 10 locations. Consider refactoring.
                Open

                  VACCINATED_ADDITIONAL_DETAILS1: {
                    'ui:title': (
                      <span>
                        <strong>If Yes, which vaccine did you receive?</strong>
                      </span>
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 395..418
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 457..480
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 519..542
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 581..604
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 169..192
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 231..254
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 293..316
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 355..378
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 417..440

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

                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 10 locations. Consider refactoring.
                Open

                  VACCINATED_ADDITIONAL_DETAILS1: {
                    'ui:title': (
                      <span>
                        <strong>If Yes, which vaccine did you receive?</strong>
                      </span>
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 333..356
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 395..418
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 457..480
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 519..542
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 581..604
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 231..254
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 293..316
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 355..378
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 417..440

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

                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 10 locations. Consider refactoring.
                Open

                  VACCINATED_ADDITIONAL_DETAILS3: {
                    'ui:title': (
                      <span>
                        <strong>Which vaccine did you receive?</strong>
                      </span>
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 333..356
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 395..418
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 457..480
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 519..542
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 581..604
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 169..192
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 231..254
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 355..378
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 417..440

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

                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

                  const removeFile = (index, focusAddButton = true) => {
                    const newFileList = props.formData.filter((__, idx) => index !== idx);
                    if (!newFileList.length) {
                      props.onChange();
                    } else {
                Severity: Major
                Found in src/applications/appeals/shared/components/FileField.jsx and 3 other locations - About 4 hrs to fix
                src/applications/pre-need/components/FileField.jsx on lines 345..363
                src/applications/simple-forms/40-0247/components/FileField.jsx on lines 357..375
                src/platform/forms-system/src/js/fields/FileField.jsx on lines 344..362

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

                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 10 locations. Consider refactoring.
                Open

                  VACCINATED_ADDITIONAL_DETAILS4: {
                    'ui:title': (
                      <span>
                        <strong>Which vaccine did you receive?</strong>
                      </span>
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 333..356
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 395..418
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 457..480
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 581..604
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 169..192
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 231..254
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 293..316
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 355..378
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 417..440

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

                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 10 locations. Consider refactoring.
                Open

                  VACCINATED_ADDITIONAL_DETAILS2: {
                    'ui:title': (
                      <span>
                        <strong>Which vaccine did you receive?</strong>
                      </span>
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 333..356
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 395..418
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 457..480
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 519..542
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 581..604
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 169..192
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 293..316
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 355..378
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 417..440

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

                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 10 locations. Consider refactoring.
                Open

                  VACCINATED_ADDITIONAL_DETAILS2: {
                    'ui:title': (
                      <span>
                        <strong>Which vaccine did you receive?</strong>
                      </span>
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 333..356
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 457..480
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 519..542
                src/applications/coronavirus-research/sign-up/pages/covidResearchUISchema.js on lines 581..604
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 169..192
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 231..254
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 293..316
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 355..378
                src/applications/coronavirus-research/update/pages/covidResearchUISchema.js on lines 417..440

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

                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