webcol/Calima

View on GitHub
public_/plantillas/inspinia/js/plugins/codemirror/mode/clike/clike.js

Summary

Maintainability
F
5 days
Test Coverage

File clike.js has 426 lines of code (exceeds 250 allowed). Consider refactoring.
Open

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

(function(mod) {
  if (typeof exports == "object" && typeof module == "object") // CommonJS
Severity: Minor
Found in public_/plantillas/inspinia/js/plugins/codemirror/mode/clike/clike.js - About 6 hrs to fix

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

      function tokenBase(stream, state) {
        var ch = stream.next();
        if (hooks[ch]) {
          var result = hooks[ch](stream, state);
          if (result !== false) return result;

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

          token: function(stream, state) {
            var ctx = state.context;
            if (stream.sol()) {
              if (ctx.align == null) ctx.align = false;
              state.indented = stream.indentation();

        Consider simplifying this complex logical expression.
        Open

              else if (indentStatements &&
                       (((ctx.type == "}" || ctx.type == "top") && curPunc != ';') ||
                        (ctx.type == "statement" && curPunc == "newstatement")))
                pushContext(state, stream.column(), "statement");
        Severity: Major
        Found in public_/plantillas/inspinia/js/plugins/codemirror/mode/clike/clike.js - About 40 mins to fix

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

            function Context(indented, column, type, align, prev) {
          Severity: Minor
          Found in public_/plantillas/inspinia/js/plugins/codemirror/mode/clike/clike.js - About 35 mins to fix

            Avoid too many return statements within this function.
            Open

                  return "operator";
            Severity: Major
            Found in public_/plantillas/inspinia/js/plugins/codemirror/mode/clike/clike.js - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                    return "keyword";
              Severity: Major
              Found in public_/plantillas/inspinia/js/plugins/codemirror/mode/clike/clike.js - About 30 mins to fix

                Avoid too many return statements within this function.
                Open

                    return false;
                Severity: Major
                Found in public_/plantillas/inspinia/js/plugins/codemirror/mode/clike/clike.js - About 30 mins to fix

                  Avoid too many return statements within this function.
                  Open

                        else return ctx.indented + (closing ? 0 : indentUnit);
                  Severity: Major
                  Found in public_/plantillas/inspinia/js/plugins/codemirror/mode/clike/clike.js - About 30 mins to fix

                    Avoid too many return statements within this function.
                    Open

                            return tokenComment(stream, state);
                    Severity: Major
                    Found in public_/plantillas/inspinia/js/plugins/codemirror/mode/clike/clike.js - About 30 mins to fix

                      Avoid too many return statements within this function.
                      Open

                            return "builtin";
                      Severity: Major
                      Found in public_/plantillas/inspinia/js/plugins/codemirror/mode/clike/clike.js - About 30 mins to fix

                        Avoid too many return statements within this function.
                        Open

                            return "variable";
                        Severity: Major
                        Found in public_/plantillas/inspinia/js/plugins/codemirror/mode/clike/clike.js - About 30 mins to fix

                          Avoid too many return statements within this function.
                          Open

                              if (atoms.propertyIsEnumerable(cur)) return "atom";
                          Severity: Major
                          Found in public_/plantillas/inspinia/js/plugins/codemirror/mode/clike/clike.js - About 30 mins to fix

                            Avoid too many return statements within this function.
                            Open

                                    return "comment";
                            Severity: Major
                            Found in public_/plantillas/inspinia/js/plugins/codemirror/mode/clike/clike.js - About 30 mins to fix

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

                                function def(mimes, mode) {
                                  if (typeof mimes == "string") mimes = [mimes];
                                  var words = [];
                                  function add(obj) {
                                    if (obj) for (var prop in obj) if (obj.hasOwnProperty(prop))
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/modelica/modelica.js on lines 213..237

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

                              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 tokenString(quote) {
                                  return function(stream, state) {
                                    var escaped = false, next, end = false;
                                    while ((next = stream.next()) != null) {
                                      if (next == quote && !escaped) {end = true; break;}
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/d/d.js on lines 77..88

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

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

                                function popContext(state) {
                                  var t = state.context.type;
                                  if (t == ")" || t == "]" || t == "}")
                                    state.indented = state.context.indented;
                                  return state.context = state.context.prev;
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/d/d.js on lines 127..132
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/ecl/ecl.js on lines 143..148
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/go/go.js on lines 119..124
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/groovy/groovy.js on lines 150..155
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/kotlin/kotlin.js on lines 203..208

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

                              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 pushContext(state, col, type) {
                                  var indent = state.indented;
                                  if (state.context && state.context.type == "statement")
                                    indent = state.context.indented;
                                  return state.context = new Context(indent, col, type, null, state.context);
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/d/d.js on lines 121..126

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

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

                              (function(mod) {
                                if (typeof exports == "object" && typeof module == "object") // CommonJS
                                  mod(require("../../lib/codemirror"));
                                else if (typeof define == "function" && define.amd) // AMD
                                  define(["../../lib/codemirror"], mod);
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/apl/apl.js on lines 4..175
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/asterisk/asterisk.js on lines 20..198
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/clojure/clojure.js on lines 9..243
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/cobol/cobol.js on lines 8..255
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/coffeescript/coffeescript.js on lines 8..369
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/commonlisp/commonlisp.js on lines 4..120
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/css/css.js on lines 4..717
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/cypher/cypher.js on lines 7..146
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/d/d.js on lines 4..218
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/diff/diff.js on lines 4..47
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/dtd/dtd.js on lines 11..142
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/dylan/dylan.js on lines 4..299
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/ecl/ecl.js on lines 4..207
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/eiffel/eiffel.js on lines 4..162
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/erlang/erlang.js on lines 18..622
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/fortran/fortran.js on lines 4..188
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/gas/gas.js on lines 4..345
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/gherkin/gherkin.js on lines 19..178
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/go/go.js on lines 4..184
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/groovy/groovy.js on lines 4..226
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/haskell/haskell.js on lines 4..267
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/haxe/haxe.js on lines 4..518
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/http/http.js on lines 4..113
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/javascript/javascript.js on lines 6..684
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/jinja2/jinja2.js on lines 4..142
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/julia/julia.js on lines 4..301
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/kotlin/kotlin.js on lines 4..280
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/livescript/livescript.js on lines 9..280
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/lua/lua.js on lines 8..159
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/meta.js on lines 4..144
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/mirc/mirc.js on lines 6..193
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/mllike/mllike.js on lines 4..205
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/modelica/modelica.js on lines 6..245
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/nginx/nginx.js on lines 4..178
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/ntriples/ntriples.js on lines 32..186
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/octave/octave.js on lines 4..135
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/pascal/pascal.js on lines 4..109
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/perl/perl.js on lines 7..832
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/pig/pig.js on lines 10..188
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/properties/properties.js on lines 4..78
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/puppet/puppet.js on lines 4..220
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/python/python.js on lines 4..359
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/q/q.js on lines 4..139
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/r/r.js on lines 4..162
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/rpm/rpm.js on lines 4..101
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/ruby/ruby.js on lines 4..285
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/rust/rust.js on lines 4..451
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/sass/sass.js on lines 4..327
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/scheme/scheme.js on lines 8..248
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/shell/shell.js on lines 4..138
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/sieve/sieve.js on lines 4..193
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/smalltalk/smalltalk.js on lines 4..168
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/smarty/smarty.js on lines 8..221
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/solr/solr.js on lines 4..104
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/sparql/sparql.js on lines 4..160
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/sql/sql.js on lines 4..362
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/stex/stex.js on lines 9..262
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/tcl/tcl.js on lines 6..147
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/tiddlywiki/tiddlywiki.js on lines 21..367
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/tiki/tiki.js on lines 4..323
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/toml/toml.js on lines 4..88
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/turtle/turtle.js on lines 4..160
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/vb/vb.js on lines 4..274
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/vbscript/vbscript.js on lines 15..350
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/velocity/velocity.js on lines 4..201
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/verilog/verilog.js on lines 4..364
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/xml/xml.js on lines 4..384
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/xquery/xquery.js on lines 4..447
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/yaml/yaml.js on lines 4..112
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/z80/z80.js on lines 4..100

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

                              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

                                function tokenComment(stream, state) {
                                  var maybeEnd = false, ch;
                                  while (ch = stream.next()) {
                                    if (ch == "/" && maybeEnd) {
                                      state.tokenize = null;
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/d/d.js on lines 90..100
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/d/d.js on lines 102..112

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

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

                                  if (ch == "/") {
                                    if (stream.eat("*")) {
                                      state.tokenize = tokenComment;
                                      return tokenComment(stream, state);
                                    }
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/ecl/ecl.js on lines 60..69
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/go/go.js on lines 60..69

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

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

                                function words(str) {
                                  var obj = {}, words = str.split(" ");
                                  for (var i = 0; i < words.length; ++i) obj[words[i]] = true;
                                  return obj;
                                }
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/clojure/clojure.js on lines 25..29
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/cobol/cobol.js on lines 22..26
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/d/d.js on lines 189..193
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/ecl/ecl.js on lines 16..20
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/groovy/groovy.js on lines 15..19
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/kotlin/kotlin.js on lines 15..19
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/mirc/mirc.js on lines 18..22
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/modelica/modelica.js on lines 202..207
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/nginx/nginx.js on lines 16..20
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/pascal/pascal.js on lines 15..19
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/scheme/scheme.js on lines 23..27
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/sieve/sieve.js on lines 15..19
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/tcl/tcl.js on lines 17..21
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/velocity/velocity.js on lines 15..19

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

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

                                function Context(indented, column, type, align, prev) {
                                  this.indented = indented;
                                  this.column = column;
                                  this.type = type;
                                  this.align = align;
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/d/d.js on lines 114..120
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/ecl/ecl.js on lines 133..139
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/go/go.js on lines 109..115
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/groovy/groovy.js on lines 140..146
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/kotlin/kotlin.js on lines 191..197
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/verilog/verilog.js on lines 224..230

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

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

                                    if (stream.sol()) {
                                      if (ctx.align == null) ctx.align = false;
                                      state.indented = stream.indentation();
                                      state.startOfLine = true;
                                    }
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/d/d.js on lines 148..152
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/ecl/ecl.js on lines 164..168
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/verilog/verilog.js on lines 293..297

                              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

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

                                  startState: function(basecolumn) {
                                    return {
                                      tokenize: null,
                                      context: new Context((basecolumn || 0) - indentUnit, 0, "top", false),
                                      indented: 0,
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/d/d.js on lines 137..144
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/ecl/ecl.js on lines 153..160
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/go/go.js on lines 129..136
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/verilog/verilog.js on lines 282..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 50.

                              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

                                             (((ctx.type == "}" || ctx.type == "top") && curPunc != ';') ||
                                              (ctx.type == "statement" && curPunc == "newstatement")))
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/d/d.js on lines 169..169

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

                                    else if (ctx.align && (!dontAlignCalls || ctx.type != ")")) return ctx.column + (closing ? 0 : 1);
                                    else if (ctx.type == ")" && !closing) return ctx.indented + statementIndentUnit;
                                    else return ctx.indented + (closing ? 0 : indentUnit);
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/verilog/verilog.js on lines 346..348

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

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

                                  if (ch == '"' || ch == "'") {
                                    state.tokenize = tokenString(ch);
                                    return state.tokenize(stream, state);
                                  }
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/ecl/ecl.js on lines 48..51
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/fortran/fortran.js on lines 128..131
                              public_/plantillas/inspinia/js/plugins/codemirror/mode/pascal/pascal.js on lines 33..36

                              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