SiLeBAT/FSK-Lab

View on GitHub
de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/textile/textile.js

Summary

Maintainability
D
2 days
Test Coverage

File textile.js has 398 lines of code (exceeds 250 allowed). Consider refactoring.
Open

// CodeMirror, copyright (c) by Marijn Haverbeke and others
// Distributed under an MIT license: https://codemirror.net/LICENSE

(function(mod) {
  if (typeof exports == "object" && typeof module == "object") { // CommonJS
Severity: Minor
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/textile/textile.js - About 5 hrs to fix

Function handlePhraseModifier has 43 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  function handlePhraseModifier(stream, state, ch) {
    if (ch === "_") {
      if (stream.eat("_"))
        return togglePhraseModifier(stream, state, "italic", /__/, 2);
      else

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

    createRe: function(name) {
      switch (name) {
      case "drawTable":
        return REs.makeRe("^", REs.single.drawTable, "$");
      case "html":

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

    blockType: function(stream, state) {
      var match, type;
      state.layoutType = null;

      if (match = stream.match(RE("type")))

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

  function togglePhraseModifier(stream, state, phraseModifier, closeRE, openSize) {
Severity: Minor
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/textile/textile.js - About 35 mins to fix

Avoid too many return statements within this function.
Open

      return tokenStylesWith(state, TOKEN_STYLES.html);
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/textile/textile.js - About 30 mins to fix

Avoid too many return statements within this function.
Open

      return togglePhraseModifier(stream, state, "notextile", /==/, 2);
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/textile/textile.js - About 30 mins to fix

Avoid too many return statements within this function.
Open

      return tokenStyles(state);
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/textile/textile.js - About 30 mins to fix

Avoid too many return statements within this function.
Open

      return togglePhraseModifier(stream, state, "sub", /~/, 1);
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/textile/textile.js - About 30 mins to fix

Avoid too many return statements within this function.
Open

      return togglePhraseModifier(stream, state, "code", /@/, 1);
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/textile/textile.js - About 30 mins to fix

Avoid too many return statements within this function.
Open

      return togglePhraseModifier(stream, state, "deletion", /-/, 1);
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/textile/textile.js - About 30 mins to fix

Avoid too many return statements within this function.
Open

      return togglePhraseModifier(stream, state, "sup", /\^/, 1);
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/textile/textile.js - About 30 mins to fix

Avoid too many return statements within this function.
Open

    return tokenStyles(state);
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/textile/textile.js - About 30 mins to fix

Avoid too many return statements within this function.
Open

      return togglePhraseModifier(stream, state, "span", /%/, 1);
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/textile/textile.js - About 30 mins to fix

Avoid too many return statements within this function.
Open

        return tokenStylesWith(state, TOKEN_STYLES.specialChar);
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/textile/textile.js - About 30 mins to fix

Avoid too many return statements within this function.
Open

      return togglePhraseModifier(stream, state, "cite", /\?\?/, 2);
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/textile/textile.js - About 30 mins to fix

Avoid too many return statements within this function.
Open

      return togglePhraseModifier(stream, state, "addition", /\+/, 1);
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/textile/textile.js - About 30 mins to fix

Avoid too many return statements within this function.
Open

      return type;
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/textile/textile.js - About 30 mins to fix

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

    tableCellAttributes: function(stream, state) {
      state.mode = Modes.tableText;

      if (stream.match(RE("tableCellAttributes")))
        return tokenStylesWith(state, TOKEN_STYLES.attributes);
de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/textile/textile.js on lines 355..362

Duplicated Code

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

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

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

Tuning

This issue has a mass of 63.

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

    attributes: function(stream, state) {
      state.mode = Modes.layoutLength;

      if (stream.match(RE("attributes")))
        return tokenStylesWith(state, TOKEN_STYLES.attributes);
de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/textile/textile.js on lines 434..441

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

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

  } else if (typeof define == "function" && define.amd) { // AMD
    define(["../../lib/codemirror"], mod);
  } else { // Plain browser env
    mod(CodeMirror);
  }
de.bund.bfr.knime.pmm.nodes/js-src/de/bund/bfr/knime/pmm/js/modelplotter/jquery-ui.js on lines 7..15

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

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