SiLeBAT/FSK-Lab

View on GitHub

Showing 14,752 of 14,752 total issues

Avoid deeply nested control flow statements.
Open

        if (!token) {
          for (var i = 0; i < text.length; i++) {
            if (text[i] === '{') {
              state.braced++;
            } else if (text[i] === '}') {
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/pegjs/pegjs.js - About 45 mins to fix

Avoid deeply nested control flow statements.
Open

          if (stream.eat(/[eE]/)) {        // float with exponent
            if (stream.eat(/[-+]/)) {
              if (!stream.eatWhile(digitRE)) {
                stream.backUp(2);            // "2e-" - syntax error
              }
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/erlang/erlang.js - About 45 mins to fix

Avoid deeply nested control flow statements.
Open

                                        if(c=="<")
                                                return tokenChain(stream,state,[">",">"],RXstyle,RXmodifiers);
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/perl/perl.js - About 45 mins to fix

Avoid deeply nested control flow statements.
Open

      if (blockKeywords.propertyIsEnumerable(cur)) curPunc = "newstatement";
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/ecl/ecl.js - About 45 mins to fix

Avoid deeply nested control flow statements.
Open

                                        if(c=="[")
                                                return tokenChain(stream,state,["]","]"],RXstyle,RXmodifiers);
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/perl/perl.js - About 45 mins to fix

Avoid deeply nested control flow statements.
Open

            if (stream.pos > word.length && stream.string.charAt(stream.pos-word.length-1)=="." && state.lastTokenWasBuiltin)
                return "builtin";
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/velocity/velocity.js - About 45 mins to fix

Avoid deeply nested control flow statements.
Open

            if (functions && functions.propertyIsEnumerable(word) ||
                    (stream.current().match(/^#@?[a-z0-9_]+ *$/i) && stream.peek()=="(") &&
                     !(functions && functions.propertyIsEnumerable(word.toLowerCase()))) {
                state.beforeParams = true;
                state.lastTokenWasBuiltin = false;
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/velocity/velocity.js - About 45 mins to fix

Avoid deeply nested control flow statements.
Open

            if (keywords && keywords.propertyIsEnumerable(word))
                return "keyword";
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/velocity/velocity.js - About 45 mins to fix

Avoid deeply nested control flow statements.
Open

                                        if(c=="<"){
                                                eatSuffix(stream, 2);
                                                return tokenChain(stream,state,[">"],"string");}
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/perl/perl.js - About 45 mins to fix

Avoid deeply nested control flow statements.
Open

                                else if(c=="w"){
                                        c=look(stream, 1);
                                        if(c=="("){
                                                eatSuffix(stream, 2);
                                                return tokenChain(stream,state,[")"],"bracket");}
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/perl/perl.js - About 45 mins to fix

Avoid deeply nested control flow statements.
Open

          if (stream.eat(" ") || stream.sol()) {
            if (stream.match(keywords)) {
              return "keyword";
            }
            if (stream.match(atom)) {
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/twig/twig.js - About 45 mins to fix

Avoid deeply nested control flow statements.
Open

        } else if (ch = stream.eat(/\{|%/)) {
          //Cache close tag
          state.intag = ch;
          if (ch == "{") {
            state.intag = "}";
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/twig/twig.js - About 45 mins to fix

Avoid deeply nested control flow statements.
Open

                                        if(c=="("){
                                                eatSuffix(stream, 2);
                                                return tokenChain(stream,state,[")"],"string");}
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/perl/perl.js - About 45 mins to fix

Avoid deeply nested control flow statements.
Open

                                        if(c=="{"){
                                                eatSuffix(stream, 2);
                                                return tokenChain(stream,state,["}"],"string");}
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/perl/perl.js - About 45 mins to fix

Avoid deeply nested control flow statements.
Open

                                        if(c=="(")
                                                return tokenChain(stream,state,[")",")"],RXstyle,RXmodifiers);
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/perl/perl.js - About 45 mins to fix

Avoid deeply nested control flow statements.
Open

        if (state.localState === null) {
          state.localState = CodeMirror.startState(jsMode);
        }
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/pegjs/pegjs.js - About 45 mins to fix

Avoid deeply nested control flow statements.
Open

                                        if(/[\^'"!~\/]/.test(c)){
                                                eatSuffix(stream, 1);
                                                return tokenChain(stream,state,[stream.eat(c)],"string");}}
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/perl/perl.js - About 45 mins to fix

Avoid deeply nested control flow statements.
Open

              if (stream.eat(tests.symbol) === undefined) {
                break;
              } else {
                col++;
              }
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/cobol/cobol.js - About 45 mins to fix

Avoid deeply nested control flow statements.
Open

    } else if (builtin.propertyIsEnumerable(cur)) {
      if (blockKeywords.propertyIsEnumerable(cur)) curPunc = "newstatement";
      return "builtin";
    } else { //Data types are of from KEYWORD##
                var i = cur.length - 1;
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/ecl/ecl.js - About 45 mins to fix

Avoid deeply nested control flow statements.
Open

                                        if(c=="["){
                                                eatSuffix(stream, 2);
                                                return tokenChain(stream,state,["]"],"string");}
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/perl/perl.js - About 45 mins to fix
Severity
Category
Status
Source
Language