Showing 398 of 398 total issues

Function parseExportDeclaration has 82 lines of code (exceeds 25 allowed). Consider refactoring.
Open

        Parser.prototype.parseExportDeclaration = function () {
            if (this.context.inFunctionBody) {
                this.throwError(messages_1.Messages.IllegalExportDeclaration);
            }
            var node = this.createNode();
Severity: Major
Found in dist/csp.tmpl.js - About 3 hrs to fix

    Function parseStatement has 81 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

            Parser.prototype.parseStatement = function () {
                var statement = null;
                switch (this.lookahead.type) {
                    case token_1.Token.BooleanLiteral:
                    case token_1.Token.NullLiteral:
    Severity: Major
    Found in dist/csp.tmpl.js - About 3 hrs to fix

      Function parseClassElement has 79 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

              Parser.prototype.parseClassElement = function (hasConstructor) {
                  var token = this.lookahead;
                  var node = this.createNode();
                  var kind;
                  var key;
      Severity: Major
      Found in dist/csp.tmpl.js - About 3 hrs to fix

        Function parseObjectProperty has 78 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

                Parser.prototype.parseObjectProperty = function (hasProto) {
                    var node = this.createNode();
                    var token = this.lookahead;
                    var kind;
                    var key;
        Severity: Major
        Found in dist/csp.tmpl.js - About 3 hrs to fix

          Function Parser has 77 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

                  function Parser(code, options, delegate) {
                      if (options === void 0) { options = {}; }
                      this.config = {
                          range: (typeof options.range === 'boolean') && options.range,
                          loc: (typeof options.loc === 'boolean') && options.loc,
          Severity: Major
          Found in dist/csp.tmpl.js - About 3 hrs to fix

            Function Tokenizer has 77 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                var Tokenizer = (function () {
                    function Tokenizer(code, config) {
                        this.errorHandler = new error_handler_1.ErrorHandler();
                        this.errorHandler.tolerant = config ? (typeof config.tolerant === 'boolean' && config.tolerant) : false;
                        this.scanner = new scanner_1.Scanner(code, this.errorHandler);
            Severity: Major
            Found in dist/csp.tmpl.js - About 3 hrs to fix

              Function scanPunctuator has 73 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                      Scanner.prototype.scanPunctuator = function () {
                          var token = {
                              type: token_1.Token.Punctuator,
                              value: '',
                              lineNumber: this.lineNumber,
              Severity: Major
              Found in dist/csp.tmpl.js - About 2 hrs to fix

                Function split has 72 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                  _brackets.split = function split (str, tmpl, _bp) {
                    // istanbul ignore next: _bp is for the compiler
                    if (!_bp) _bp = _cache;
                
                    var
                Severity: Major
                Found in dist/csp.tmpl.js - About 2 hrs to fix

                  Function split has 72 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      _brackets.split = function split (str, tmpl, _bp) {
                        // istanbul ignore next: _bp is for the compiler
                        if (!_bp) _bp = _cache
                  
                        var
                  Severity: Major
                  Found in dist/tmpl.js - About 2 hrs to fix

                    Function split has 72 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                      _brackets.split = function split (str, tmpl, _bp) {
                        // istanbul ignore next: _bp is for the compiler
                        if (!_bp) _bp = _cache
                    
                        var
                    Severity: Major
                    Found in dist/es6.tmpl.js - About 2 hrs to fix

                      Function split has 72 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                        _brackets.split = function split (str, tmpl, _bp) {
                          // istanbul ignore next: _bp is for the compiler
                          if (!_bp) _bp = _cache
                      
                          // Template text is easy: closing brackets are ignored, all we have to do is find
                      Severity: Major
                      Found in src/brackets.js - About 2 hrs to fix

                        Function scanComments has 69 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                                Scanner.prototype.scanComments = function () {
                                    var comments;
                                    if (this.trackComment) {
                                        comments = [];
                                    }
                        Severity: Major
                        Found in dist/csp.tmpl.js - About 2 hrs to fix

                          Function parseAssignmentExpression has 65 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                                  Parser.prototype.parseAssignmentExpression = function () {
                                      var expr;
                                      if (!this.context.allowYield && this.matchKeyword('yield')) {
                                          expr = this.parseYieldExpression();
                                      }
                          Severity: Major
                          Found in dist/csp.tmpl.js - About 2 hrs to fix

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

                            function hasProperty(object, key, primitives){
                              var proto = primitives.getPrototypeOf(object);
                              var hasOwn = hasOwnProperty(object, key);
                              if (object[key] !== undefined){
                                return true
                            Severity: Major
                            Found in dist/csp.tmpl.js and 1 other location - About 2 hrs to fix
                            src/notevil/index.js on lines 437..447

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

                            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 hasProperty(object, key, primitives){
                              var proto = primitives.getPrototypeOf(object)
                              var hasOwn = hasOwnProperty(object, key)
                              if (object[key] !== undefined){
                                return true
                            Severity: Major
                            Found in src/notevil/index.js and 1 other location - About 2 hrs to fix
                            dist/csp.tmpl.js on lines 7084..7094

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

                            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

                                    Parser.prototype.expect = function (value) {
                                        var token = this.nextToken();
                                        if (token.type !== token_1.Token.Punctuator || token.value !== value) {
                                            this.throwUnexpectedToken(token);
                                        }
                            Severity: Major
                            Found in dist/csp.tmpl.js and 2 other locations - About 2 hrs to fix
                            dist/csp.tmpl.js on lines 884..889
                            dist/csp.tmpl.js on lines 5755..5760

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

                            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

                                    JSXParser.prototype.expectJSX = function (value) {
                                        var token = this.nextJSXToken();
                                        if (token.type !== token_1.Token.Punctuator || token.value !== value) {
                                            this.throwUnexpectedToken(token);
                                        }
                            Severity: Major
                            Found in dist/csp.tmpl.js and 2 other locations - About 2 hrs to fix
                            dist/csp.tmpl.js on lines 857..862
                            dist/csp.tmpl.js on lines 884..889

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

                            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

                                    Parser.prototype.expectKeyword = function (keyword) {
                                        var token = this.nextToken();
                                        if (token.type !== token_1.Token.Keyword || token.value !== keyword) {
                                            this.throwUnexpectedToken(token);
                                        }
                            Severity: Major
                            Found in dist/csp.tmpl.js and 2 other locations - About 2 hrs to fix
                            dist/csp.tmpl.js on lines 857..862
                            dist/csp.tmpl.js on lines 5755..5760

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

                            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

                            Function scanNumericLiteral has 63 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                                    Scanner.prototype.scanNumericLiteral = function () {
                                        var start = this.index;
                                        var ch = this.source[start];
                                        assert_1.assert(character_1.Character.isDecimalDigit(ch.charCodeAt(0)) || (ch === '.'), 'Numeric literal must start with a decimal digit or a decimal point');
                                        var number = '';
                            Severity: Major
                            Found in dist/csp.tmpl.js - About 2 hrs to fix

                              Function skipMultiLineComment has 62 lines of code (exceeds 25 allowed). Consider refactoring.
                              Open

                                      Scanner.prototype.skipMultiLineComment = function () {
                                          var comments;
                                          var start, loc;
                                          if (this.trackComment) {
                                              comments = [];
                              Severity: Major
                              Found in dist/csp.tmpl.js - About 2 hrs to fix
                                Severity
                                Category
                                Status
                                Source
                                Language