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

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

Summary

Maintainability
F
4 days
Test Coverage

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

function formatDataTable (elem, walk, builder, formatOptions) {
  builder.openTable();
  elem.children.forEach(walkTable);
  builder.closeTable({
    tableToString: (rows) => tableToString(rows, formatOptions.rowSpacing ?? 0, formatOptions.colSpacing ?? 3),
Severity: Minor
Found in packages/html-to-text/src/text-formatters.js - About 2 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 text-formatters.js has 266 lines of code (exceeds 250 allowed). Consider refactoring.
Open


import { get, numberToLetterSequence, numberToRoman, trimCharacter, trimCharacterEnd } from '@html-to-text/base/src/util';

import { tableToString } from './table-printer';

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

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

    function formatDataTable (elem, walk, builder, formatOptions) {
      builder.openTable();
      elem.children.forEach(walkTable);
      builder.closeTable({
        tableToString: (rows) => tableToString(rows, formatOptions.rowSpacing ?? 0, formatOptions.colSpacing ?? 3),
    Severity: Major
    Found in packages/html-to-text/src/text-formatters.js - About 2 hrs to fix

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

      function formatAnchor (elem, walk, builder, formatOptions) {
        function getHref () {
          if (formatOptions.ignoreHref) { return ''; }
          if (!elem.attribs || !elem.attribs.href) { return ''; }
          let href = elem.attribs.href.replace(/^mailto:/, '');
      Severity: Minor
      Found in packages/html-to-text/src/text-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 walkTable has 36 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        function walkTable (elem) {
          if (elem.type !== 'tag') { return; }
      
          const formatHeaderCell = (formatOptions.uppercaseHeaderCells !== false)
            ? (cellNode) => {
      Severity: Minor
      Found in packages/html-to-text/src/text-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-text/src/text-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 31 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        function formatAnchor (elem, walk, builder, formatOptions) {
          function getHref () {
            if (formatOptions.ignoreHref) { return ''; }
            if (!elem.attribs || !elem.attribs.href) { return ''; }
            let href = elem.attribs.href.replace(/^mailto:/, '');
        Severity: Minor
        Found in packages/html-to-text/src/text-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-text/src/text-formatters.js - About 1 hr 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-text/src/text-formatters.js - About 35 mins 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-text/src/text-formatters.js - About 35 mins to fix

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

                function formatImage (elem, walk, builder, formatOptions) {
                  const attribs = elem.attribs || {};
                  const alt = (attribs.alt)
                    ? attribs.alt
                    : '';
                Severity: Minor
                Found in packages/html-to-text/src/text-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-text/src/text-formatters.js and 1 other location - About 6 hrs to fix
                packages/html-to-md/src/md-formatters.js on lines 180..192

                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-text/src/text-formatters.js and 1 other location - About 4 hrs to fix
                packages/html-to-md/src/md-formatters.js on lines 59..72

                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-text/src/text-formatters.js and 1 other location - About 3 hrs to fix
                packages/html-to-md/src/md-formatters.js on lines 351..357

                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-text/src/text-formatters.js and 1 other location - About 1 hr to fix
                packages/html-to-md/src/md-formatters.js on lines 87..94

                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

                function formatParagraph (elem, walk, builder, formatOptions) {
                  builder.openBlock({ leadingLineBreaks: formatOptions.leadingLineBreaks || 2 });
                  walk(elem.children, builder);
                  builder.closeBlock({ trailingLineBreaks: formatOptions.trailingLineBreaks || 2 });
                }
                Severity: Major
                Found in packages/html-to-text/src/text-formatters.js and 1 other location - About 1 hr to fix
                packages/base/src/generic-formatters.js on lines 51..55

                Duplicated Code

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

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

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

                Tuning

                This issue has a mass of 66.

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

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

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

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

                Refactorings

                Further Reading

                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-text/src/text-formatters.js and 1 other location - About 1 hr to fix
                packages/html-to-md/src/md-formatters.js on lines 202..206

                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

                There are no issues that match your filters.

                Category
                Status