aneilbaboo/markdown-components

View on GitHub

Showing 11 of 13 total issues

File parser.js has 282 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import Cursor from './cursor';
import streams from 'memory-streams';
import { isFunction } from 'lodash';
import { error, ErrorType } from './error';
import { OpType } from './evaluator';
Severity: Minor
Found in src/parser.js - About 2 hrs to fix

Parser has 22 functions (exceeds 20 allowed). Consider refactoring.
Open

export default class Parser {
  constructor({ markdownEngine, interpolationPoint, indentedMarkdown }) {
    if (!isFunction(markdownEngine)) {
      throw new Error('Invalid markdownEngine');
    }
Severity: Minor
Found in src/parser.js - About 2 hrs to fix

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

  captureInterpolationFunctionArguments(symbol) {
    const args = [];
    if (!this.cursor.capture(/^\s*\)/)) {
      while (true) {
        const arg = this.captureInterpolationExpression(/^\s*((?=\,|\)))/);
Severity: Minor
Found in src/parser.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 captureAttributes has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

  captureAttributes() {
    var attribs = {};
    var match;

    while (match = this.cursor.capture(ATTRIBUTE_RE)) {
Severity: Minor
Found in src/parser.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 removeIndent has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

  removeIndent(text) {
    const textBlockLines = text.split('\n');
    var [startLine, firstIndent] = this.findFirstIndentedLine(textBlockLines);

    var resultLines = [];
Severity: Minor
Found in src/parser.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 tag has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

  tag() {
    const tagMatch = this.cursor.capture(/^<(\/?\w+)/);
    if (tagMatch) {
      const rawName = tagMatch[1];
      const attrs = this.captureAttributes(this.cursor);
Severity: Minor
Found in src/parser.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

Avoid too many return statements within this function.
Open

      return this.captureInterpolationGroup();
Severity: Major
Found in src/parser.js - About 30 mins to fix

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

  zipTextAndInterpolation(textBlocks, interpolationElements) {
    const blocks = [];
    var i=0;
    while (textBlocks.length>i || interpolationElements>i) {
      const [text, interpolation] = [textBlocks[i], interpolationElements[i]];
Severity: Minor
Found in src/parser.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 writeElement has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

  writeElement(elt, context, stream) {
    const _this = this;
    const render = function (obj, newContext) {
      newContext = newContext || context;
      if (isString(obj) || isNumber(obj)) {
Severity: Minor
Found in src/renderer.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 captureTextAndInterpolations has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

  captureTextAndInterpolations() {
    const interpolationElements = [];
    const textBlocks = [];
    const captureAndStoreInterpolation = () => {
      const interpolation = this.captureInterpolation();
Severity: Minor
Found in src/parser.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 captureInterpolationTerm has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

  captureInterpolationTerm(lhs, terminator) {
    const expressionMatch = this.cursor.capture(
      /^\s*(and\b|or\b)|(not\b)|(\()|([a-zA-Z][.\w]*)\s*(\()?|(\"[^\"]*\"|\'[^\']*\'|true|false|[+-]?(?:[0-9]*[.])?[0-9]+)/i
    );
    const capture = expressionMatch && expressionMatch[0].trim(' ');
Severity: Minor
Found in src/parser.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

Severity
Category
Status
Source
Language