html-to-text/node-html-to-text

View on GitHub
packages/html-to-md/src/md-formatters.js

Summary

Maintainability
F
5 days
Test Coverage

File md-formatters.js has 295 lines of code (exceeds 250 allowed). Consider refactoring.
Open


import { get, trimCharacter, trimCharacterEnd } from '@html-to-text/base/src/util';
import { render } from 'dom-serializer';
import { existsOne, innerText } from 'domutils';

Severity: Minor
Found in packages/html-to-md/src/md-formatters.js - About 3 hrs to fix

    Function collectDefinitionGroups has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
    Open

    function collectDefinitionGroups (elem) {
      const defItems = [];
      function handleDtDd (el) {
        if (el.name === 'dt' || el.name === 'dd') {
          defItems.push(el);
    Severity: Minor
    Found in packages/html-to-md/src/md-formatters.js - 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

    Function formatDataTable has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
    Open

    function formatDataTable (elem, walk, builder, formatOptions) {
      builder.openTable();
      elem.children.forEach(walkTable);
      const hasHeader = existsOne(
        (el) => el.name === 'thead' || el.name === 'th',
    Severity: Minor
    Found in packages/html-to-md/src/md-formatters.js - 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

    Function formatDataTable has 46 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function formatDataTable (elem, walk, builder, formatOptions) {
      builder.openTable();
      elem.children.forEach(walkTable);
      const hasHeader = existsOne(
        (el) => el.name === 'thead' || el.name === 'th',
    Severity: Minor
    Found in packages/html-to-md/src/md-formatters.js - About 1 hr to fix

      Function formatList has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
      Open

      function formatList (elem, walk, builder, formatOptions, nextPrefixCallback) {
        const isNestedList = get(elem, ['parent', 'name']) === 'li';
      
        // With Roman numbers, index length is not as straightforward as with Arabic numbers or letters,
        // so the dumb length comparison is the most robust way to get the correct value.
      Severity: Minor
      Found in packages/html-to-md/src/md-formatters.js - 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

      Function formatAnchor has 30 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function formatAnchor (elem, walk, builder, formatOptions) {
        const attribs = elem.attribs || {};
        if (attribs.name && !attribs.href) {
          builder.startNoWrap();
          builder.addInline(
      Severity: Minor
      Found in packages/html-to-md/src/md-formatters.js - About 1 hr to fix

        Function collectDefinitionGroups has 28 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        function collectDefinitionGroups (elem) {
          const defItems = [];
          function handleDtDd (el) {
            if (el.name === 'dt' || el.name === 'dd') {
              defItems.push(el);
        Severity: Minor
        Found in packages/html-to-md/src/md-formatters.js - About 1 hr to fix

          Function formatList has 27 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          function formatList (elem, walk, builder, formatOptions, nextPrefixCallback) {
            const isNestedList = get(elem, ['parent', 'name']) === 'li';
          
            // With Roman numbers, index length is not as straightforward as with Arabic numbers or letters,
            // so the dumb length comparison is the most robust way to get the correct value.
          Severity: Minor
          Found in packages/html-to-md/src/md-formatters.js - About 1 hr to fix

            Function walkTable has 26 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              function walkTable (elem) {
                if (elem.type !== 'tag') { return; }
            
                switch (elem.name) {
                  case 'thead':
            Severity: Minor
            Found in packages/html-to-md/src/md-formatters.js - About 1 hr to fix

              Function pathRewrite has 5 arguments (exceeds 4 allowed). Consider refactoring.
              Open

              function pathRewrite (path, rewriter, baseUrl, metadata, elem) {
              Severity: Minor
              Found in packages/html-to-md/src/md-formatters.js - About 35 mins to fix

                Function formatList has 5 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                function formatList (elem, walk, builder, formatOptions, nextPrefixCallback) {
                Severity: Minor
                Found in packages/html-to-md/src/md-formatters.js - About 35 mins to fix

                  Function formatAnchor has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                  Open

                  function formatAnchor (elem, walk, builder, formatOptions) {
                    const attribs = elem.attribs || {};
                    if (attribs.name && !attribs.href) {
                      builder.startNoWrap();
                      builder.addInline(
                  Severity: Minor
                  Found in packages/html-to-md/src/md-formatters.js - About 35 mins to fix

                  Cognitive Complexity

                  Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                  A method's cognitive complexity is based on a few simple rules:

                  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                  • Code is considered more complex for each "break in the linear flow of the code"
                  • Code is considered more complex when "flow breaking structures are nested"

                  Further reading

                  Function formatDefinitionList has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                  Open

                  function formatDefinitionList (elem, walk, builder, formatOptions) {
                    const groups = collectDefinitionGroups(elem);
                    for (const group of groups) {
                      builder.openList({
                        interRowLineBreaks: 1,
                  Severity: Minor
                  Found in packages/html-to-md/src/md-formatters.js - About 25 mins to fix

                  Cognitive Complexity

                  Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                  A method's cognitive complexity is based on a few simple rules:

                  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                  • Code is considered more complex for each "break in the linear flow of the code"
                  • Code is considered more complex when "flow breaking structures are nested"

                  Further reading

                  Function formatImage has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                  Open

                  function formatImage (elem, walk, builder, formatOptions) {
                    const attribs = elem.attribs || {};
                    if (attribs.src && attribs.src.startsWith('data:')) {
                      builder.startNoWrap();
                      builder.addInline(
                  Severity: Minor
                  Found in packages/html-to-md/src/md-formatters.js - About 25 mins to fix

                  Cognitive Complexity

                  Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                  A method's cognitive complexity is based on a few simple rules:

                  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                  • Code is considered more complex for each "break in the linear flow of the code"
                  • Code is considered more complex when "flow breaking structures are nested"

                  Further reading

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

                    const listItems = (elem.children || [])
                      // it might be more accurate to check only for html spaces here, but no significant benefit
                      .filter(child => child.type !== 'text' || !/^\s*$/.test(child.data))
                      .map(function (child) {
                        if (child.name !== 'li') {
                  Severity: Major
                  Found in packages/html-to-md/src/md-formatters.js and 1 other location - About 6 hrs to fix
                  packages/html-to-text/src/text-formatters.js on lines 197..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 165.

                  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

                  function formatBlockquote (elem, walk, builder, formatOptions) {
                    builder.openBlock({
                      leadingLineBreaks: formatOptions.leadingLineBreaks || 2,
                      reservedLineLength: 2
                    });
                  Severity: Major
                  Found in packages/html-to-md/src/md-formatters.js and 1 other location - About 4 hrs to fix
                  packages/html-to-text/src/text-formatters.js on lines 86..99

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

                  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

                    function formatCell (cellNode) {
                      const colspan = +get(cellNode, ['attribs', 'colspan']) || 1;
                      const rowspan = +get(cellNode, ['attribs', 'rowspan']) || 1;
                      builder.openTableCell({ maxColumnWidth: formatOptions.maxColumnWidth });
                      walk(cellNode.children, builder);
                  Severity: Major
                  Found in packages/html-to-md/src/md-formatters.js and 1 other location - About 3 hrs to fix
                  packages/html-to-text/src/text-formatters.js on lines 329..335

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

                  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

                  function pathRewrite (path, rewriter, baseUrl, metadata, elem) {
                    const modifiedPath = (typeof rewriter === 'function')
                      ? rewriter(path, metadata, elem)
                      : path;
                    return (modifiedPath[0] === '/' && baseUrl)
                  Severity: Major
                  Found in packages/html-to-md/src/md-formatters.js and 1 other location - About 1 hr to fix
                  packages/html-to-text/src/text-formatters.js on lines 113..120

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

                  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

                    if (attribs.name && !attribs.href) {
                      builder.startNoWrap();
                      builder.addInline(
                        render(elem, { decodeEntities: builder.options.decodeEntities }),
                        { noWordTransform: true }
                  Severity: Major
                  Found in packages/html-to-md/src/md-formatters.js and 1 other location - About 1 hr to fix
                  packages/html-to-md/src/md-formatters.js on lines 103..111

                  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

                    if (attribs.src && attribs.src.startsWith('data:')) {
                      builder.startNoWrap();
                      builder.addInline(
                        render(elem, { decodeEntities: builder.options.decodeEntities }),
                        { noWordTransform: true }
                  Severity: Major
                  Found in packages/html-to-md/src/md-formatters.js and 1 other location - About 1 hr to fix
                  packages/html-to-md/src/md-formatters.js on lines 136..144

                  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

                    for (const { node, prefix } of listItems) {
                      builder.openListItem({ prefix: prefix });
                      walk([node], builder);
                      builder.closeListItem();
                    }
                  Severity: Major
                  Found in packages/html-to-md/src/md-formatters.js and 1 other location - About 1 hr to fix
                  packages/html-to-text/src/text-formatters.js on lines 219..223

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

                    if (attribs.title) {
                      builder.addLiteral(` "`);
                      builder.addInline(attribs.title);
                      builder.addLiteral(`"`);
                    }
                  Severity: Major
                  Found in packages/html-to-md/src/md-formatters.js and 1 other location - About 1 hr to fix
                  packages/html-to-md/src/md-formatters.js on lines 157..161

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

                  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

                      if (attribs.title) {
                        builder.addLiteral(` "`);
                        builder.addInline(attribs.title);
                        builder.addLiteral(`"`);
                      }
                  Severity: Major
                  Found in packages/html-to-md/src/md-formatters.js and 1 other location - About 1 hr to fix
                  packages/html-to-md/src/md-formatters.js on lines 120..124

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

                  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

                      for (const titleItem of group.titleItems) {
                        builder.openListItem({ prefix: '' });
                        walk([titleItem], builder);
                        builder.closeListItem();
                      }
                  Severity: Minor
                  Found in packages/html-to-md/src/md-formatters.js and 1 other location - About 55 mins to fix
                  packages/html-to-md/src/md-formatters.js on lines 285..289

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

                  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

                      for (const definition of group.definitions) {
                        builder.openListItem({ prefix: ': ' });
                        walk([definition], builder);
                        builder.closeListItem();
                      }
                  Severity: Minor
                  Found in packages/html-to-md/src/md-formatters.js and 1 other location - About 55 mins to fix
                  packages/html-to-md/src/md-formatters.js on lines 279..283

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

                  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