department-of-veterans-affairs/vets-website

View on GitHub
src/applications/pre-need-integration/config/form.jsx

Summary

Maintainability
F
3 days
Test Coverage

File form.jsx has 604 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import React from 'react';

import fullSchemaPreNeed from 'vets-json-schema/dist/40-10007-INTEGRATION-schema.json';

import environment from 'platform/utilities/environment';
Severity: Major
Found in src/applications/pre-need-integration/config/form.jsx - About 1 day to fix

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

        supportingDocuments: {
          title: 'Supporting files',
          pages: {
            supportingDocuments: {
              title: 'Upload supporting files',
    Severity: Major
    Found in src/applications/pre-need-integration/config/form.jsx and 1 other location - About 3 hrs to fix
    src/applications/pre-need/config/form.jsx on lines 319..345

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

    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

      defaultDefinitions: {
        fullName,
        ssn,
        date,
        dateRange,
    Severity: Major
    Found in src/applications/pre-need-integration/config/form.jsx and 1 other location - About 1 hr to fix
    src/applications/ask-a-question/form/form.js on lines 102..114

    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

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

            sponsorMilitaryDetailsSelf: {
              title: "Sponsor's military details",
              path: 'sponsor-military-details',
              depends: formData =>
                !isVeteran(formData) && !isAuthorizedAgent(formData),
    Severity: Major
    Found in src/applications/pre-need-integration/config/form.jsx and 3 other locations - About 1 hr to fix
    src/applications/disability-benefits/all-claims/config/form.js on lines 271..278
    src/applications/disability-benefits/all-claims/config/form.js on lines 279..286
    src/applications/disability-benefits/all-claims/config/form.js on lines 287..294

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

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

            militaryDetailsSelf: {
              path: 'military-details-self',
              title: 'Military details',
              depends: formData =>
                isVeteran(formData) && !isAuthorizedAgent(formData),
    Severity: Major
    Found in src/applications/pre-need-integration/config/form.jsx and 2 other locations - About 1 hr to fix
    src/applications/disability-benefits/all-claims/config/form.js on lines 664..672
    src/applications/pre-need-integration/config/form.jsx on lines 502..510

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

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

            applicantMilitaryNameInformation: {
              title: 'Previous name',
              path: 'applicant-military-name-information',
              depends: formData =>
                isVeteranAndHasServiceName(formData) &&
    Severity: Major
    Found in src/applications/pre-need-integration/config/form.jsx and 2 other locations - About 1 hr to fix
    src/applications/disability-benefits/all-claims/config/form.js on lines 664..672
    src/applications/pre-need-integration/config/form.jsx on lines 449..456

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

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

            applicantMilitaryHistoryPreparer: {
              title: "Applicant's service period(s)",
              path: 'applicant-military-history-preparer',
              depends: formData =>
                isVeteran(formData) && isAuthorizedAgent(formData),
    Severity: Major
    Found in src/applications/pre-need-integration/config/form.jsx and 3 other locations - About 1 hr to fix
    src/applications/disability-benefits/all-claims/config/form.js on lines 673..681
    src/applications/pre-need-integration/config/form.jsx on lines 457..464
    src/applications/pre-need-integration/config/form.jsx on lines 511..518

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

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

            applicantMilitaryNameInformationPreparer: {
              title: 'Previous name',
              path: 'applicant-military-name-information-preparer',
              depends: formData =>
                isVeteranAndHasServiceName(formData) && isAuthorizedAgent(formData),
    Severity: Major
    Found in src/applications/pre-need-integration/config/form.jsx and 3 other locations - About 1 hr to fix
    src/applications/disability-benefits/all-claims/config/form.js on lines 673..681
    src/applications/pre-need-integration/config/form.jsx on lines 457..464
    src/applications/pre-need-integration/config/form.jsx on lines 476..483

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

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

            militaryDetailsPreparer: {
              path: 'military-details-preparer',
              title: 'Military details',
              depends: formData =>
                isVeteran(formData) && isAuthorizedAgent(formData),
    Severity: Major
    Found in src/applications/pre-need-integration/config/form.jsx and 3 other locations - About 1 hr to fix
    src/applications/disability-benefits/all-claims/config/form.js on lines 673..681
    src/applications/pre-need-integration/config/form.jsx on lines 476..483
    src/applications/pre-need-integration/config/form.jsx on lines 511..518

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

    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

            applicantDemographics2: {
              path: 'applicant-demographics-2',
              depends: formData =>
                !isAuthorizedAgent(formData) && isVeteran(formData),
              uiSchema: applicantDemographics2.uiSchema,
    Severity: Minor
    Found in src/applications/pre-need-integration/config/form.jsx and 1 other location - About 50 mins to fix
    src/applications/pre-need/config/form.jsx on lines 238..244

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

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

            sponsorDetails: {
              title: 'Sponsor details',
              path: 'sponsor-details',
              depends: formData => !isVeteran(formData),
              uiSchema: sponsorDetails.uiSchema,
    Severity: Major
    Found in src/applications/pre-need-integration/config/form.jsx and 10 other locations - About 40 mins to fix
    src/applications/disability-benefits/all-claims/config/form.js on lines 216..222
    src/applications/disability-benefits/all-claims/config/form.js on lines 223..229
    src/applications/disability-benefits/all-claims/config/form.js on lines 636..642
    src/applications/pre-need-integration/config/form.jsx on lines 428..434
    src/applications/pre-need-integration/config/form.jsx on lines 535..541
    src/applications/pre-need/config/form.jsx on lines 192..198
    src/applications/pre-need/config/form.jsx on lines 218..224
    src/applications/pre-need/config/form.jsx on lines 225..231
    src/applications/pre-need/config/form.jsx on lines 245..251
    src/applications/pre-need/config/form.jsx on lines 280..286

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

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

            sponsorMilitaryHistory: {
              path: 'sponsor-military-history',
              title: 'Sponsor’s service period(s)',
              depends: formData => !isVeteran(formData),
              uiSchema: sponsorMilitaryHistory.uiSchema,
    Severity: Major
    Found in src/applications/pre-need-integration/config/form.jsx and 10 other locations - About 40 mins to fix
    src/applications/disability-benefits/all-claims/config/form.js on lines 216..222
    src/applications/disability-benefits/all-claims/config/form.js on lines 223..229
    src/applications/disability-benefits/all-claims/config/form.js on lines 636..642
    src/applications/pre-need-integration/config/form.jsx on lines 394..400
    src/applications/pre-need-integration/config/form.jsx on lines 428..434
    src/applications/pre-need/config/form.jsx on lines 192..198
    src/applications/pre-need/config/form.jsx on lines 218..224
    src/applications/pre-need/config/form.jsx on lines 225..231
    src/applications/pre-need/config/form.jsx on lines 245..251
    src/applications/pre-need/config/form.jsx on lines 280..286

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

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

            sponsorDemographics: {
              title: 'Sponsor demographics',
              path: 'sponsor-demographics',
              depends: formData => !isVeteran(formData),
              uiSchema: sponsorDemographics.uiSchema,
    Severity: Major
    Found in src/applications/pre-need-integration/config/form.jsx and 10 other locations - About 40 mins to fix
    src/applications/disability-benefits/all-claims/config/form.js on lines 216..222
    src/applications/disability-benefits/all-claims/config/form.js on lines 223..229
    src/applications/disability-benefits/all-claims/config/form.js on lines 636..642
    src/applications/pre-need-integration/config/form.jsx on lines 394..400
    src/applications/pre-need-integration/config/form.jsx on lines 535..541
    src/applications/pre-need/config/form.jsx on lines 192..198
    src/applications/pre-need/config/form.jsx on lines 218..224
    src/applications/pre-need/config/form.jsx on lines 225..231
    src/applications/pre-need/config/form.jsx on lines 245..251
    src/applications/pre-need/config/form.jsx on lines 280..286

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

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

            sponsorMilitaryNameInformation: {
              title: 'Sponsor’s previous name',
              path: 'sponsor-military-name-information',
              depends: formData => isNotVeteranAndHasServiceName(formData),
              uiSchema: sponsorMilitaryNameInformation.uiSchema,
    Severity: Major
    Found in src/applications/pre-need-integration/config/form.jsx and 8 other locations - About 35 mins to fix
    src/applications/disability-benefits/all-claims/config/8940/index.js on lines 186..192
    src/applications/disability-benefits/all-claims/config/form.js on lines 622..628
    src/applications/disability-benefits/all-claims/config/form.js on lines 629..635
    src/applications/disability-benefits/all-claims/config/form.js on lines 643..649
    src/applications/disability-benefits/all-claims/config/form.js on lines 650..656
    src/applications/pre-need/config/form.jsx on lines 273..279
    src/applications/pre-need/config/form.jsx on lines 293..299
    src/applications/pre-need/config/form.jsx on lines 310..316

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

    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

            preparerContactDetails: {
              title: ContactDetailsTitle,
              path: 'preparer-contact-details',
              depends: formData => isAuthorizedAgent(formData),
              uiSchema: preparerContactDetails.uiSchema,
    Severity: Minor
    Found in src/applications/pre-need-integration/config/form.jsx and 1 other location - About 35 mins to fix
    src/applications/pre-need-integration/config/form.jsx on lines 189..195

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

    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

            preparerDetails: {
              title: PreparerDetailsTitle,
              path: 'preparer-details',
              depends: formData => isAuthorizedAgent(formData),
              uiSchema: preparerDetails.uiSchema,
    Severity: Minor
    Found in src/applications/pre-need-integration/config/form.jsx and 1 other location - About 35 mins to fix
    src/applications/pre-need-integration/config/form.jsx on lines 196..202

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

    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

    There are no issues that match your filters.

    Category
    Status