matiasmenares/Nissboard

View on GitHub

Showing 413 of 413 total issues

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

class Dashboard(db.Model):
id = db.Column(db.Integer, primary_key=True)
name = db.Column(db.String, nullable=False)
red_line = db.Column(db.String, nullable=False)
yellow_line = db.Column(db.String, nullable=False)
Severity: Major
Found in dashboard/model/models.py and 1 other location - About 4 hrs to fix
dashboard/model/models.py on lines 88..92

Function 29 has 96 lines of code (exceeds 25 allowed). Consider refactoring.
Open

},{"../src/utils":22,"esprima-fb":9}],29:[function(_dereq_,module,exports){
/**
* Copyright 2013 Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
Severity: Major
Found in server/public/jsx-transformer-0.12.2.js - About 3 hrs to fix

    Function parseMethodDefinition has 95 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function parseMethodDefinition(existingPropNames, key, isStatic, generator, computed) {
    var token, param, propType, isValidDuplicateProp = false,
    isAsync, typeParameters, tokenValue, returnType,
    annotationMarker;
     
     
    Severity: Major
    Found in server/public/jsx-transformer-0.12.2.js - About 3 hrs to fix

      Function scanStringLiteral has 94 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function scanStringLiteral() {
      var str = '', quote, start, ch, code, unescaped, restore, octal = false;
       
      quote = source[index];
      assert((quote === '\'' || quote === '"'),
      Severity: Major
      Found in server/public/jsx-transformer-0.12.2.js - About 3 hrs to fix

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

        def get(self):
        channels = ChannelOutput.query.all()
        channel_schema = ChannelOutputSchema(many=True)
        measures = Measure.query.all()
        measure_schema = MeasureSchema(many=True)
        Severity: Major
        Found in dashboard/api/settings/channels/output.py and 1 other location - About 3 hrs to fix
        dashboard/api/settings/led_setting.py on lines 7..12

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

        def get(self):
        led = Led.query.all()
        led_schema = LedSchema(many=True)
        led_output = LedOutput.query.all()
        led_output_schema = LedOutputSchema(many=True)
        Severity: Major
        Found in dashboard/api/settings/led_setting.py and 1 other location - About 3 hrs to fix
        dashboard/api/settings/channels/output.py on lines 7..12

        Function parsePrimaryType has 91 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        function parsePrimaryType() {
        var typeIdentifier = null, params = null, returnType = null,
        marker = markerCreate(), rest = null, tmp,
        typeParameters, token, type, isGroupedType = false;
         
         
        Severity: Major
        Found in server/public/jsx-transformer-0.12.2.js - About 3 hrs to fix

          Function 3 has 90 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          },{"base64-js":3,"ieee754":4,"is-array":5}],3:[function(_dereq_,module,exports){
          var lookup = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
           
          ;(function (exports) {
          'use strict';
          Severity: Major
          Found in server/public/jsx-transformer-0.12.2.js - About 3 hrs to fix

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

            if len(cursorObj.execute('SELECT * FROM measure_group').fetchall()) == 0:
            cursorObj.execute("INSERT INTO measure_group VALUES(1, 'Pressure (Boost)')")
            cursorObj.execute("INSERT INTO measure_group VALUES(2, 'Pressure')")
            cursorObj.execute("INSERT INTO measure_group VALUES(3, 'Temperature')")
            cursorObj.execute("INSERT INTO measure_group VALUES(4, 'RPM')")
            Severity: Major
            Found in dashboard/core/database.py and 2 other locations - About 3 hrs to fix
            dashboard/core/database.py on lines 48..54
            dashboard/core/database.py on lines 130..135

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

            if len(cursorObj.execute('SELECT * FROM dashboard').fetchall()) == 0:
            cursorObj.execute("INSERT INTO dashboard VALUES(1, 'KINEK', '0', '0')")
            cursorObj.execute("INSERT INTO dashboard VALUES(2, 'DUST', '0', '0')")
            cursorObj.execute("INSERT INTO dashboard VALUES(3, 'INIT', '0', '0')")
            cursorObj.execute("INSERT INTO dashboard VALUES(4, 'BLUME', '0', '0')")
            Severity: Major
            Found in dashboard/core/database.py and 2 other locations - About 3 hrs to fix
            dashboard/core/database.py on lines 96..101
            dashboard/core/database.py on lines 130..135

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

            if len(cursorObj.execute('SELECT * FROM color').fetchall()) == 0:
            cursorObj.execute("INSERT INTO color VALUES(NULL, 'Red', '2345', '255,0,0')")
            cursorObj.execute("INSERT INTO color VALUES(NULL, 'Blue', '2345', '0,0,255')")
            cursorObj.execute("INSERT INTO color VALUES(NULL, 'Green', '2345', '0,255,0')")
            cursorObj.execute("INSERT INTO color VALUES(NULL, 'Yellow', '2345', '255,255,0')")
            Severity: Major
            Found in dashboard/core/database.py and 2 other locations - About 3 hrs to fix
            dashboard/core/database.py on lines 48..54
            dashboard/core/database.py on lines 96..101

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

            if (strict) {
            if (isRestrictedWord(token.value)) {
            throwErrorTolerant(token, Messages.StrictFunctionName);
            }
            } else {
            Severity: Major
            Found in server/public/jsx-transformer-0.12.2.js and 1 other location - About 3 hrs to fix
            server/public/jsx-transformer-0.12.2.js on lines 7653..7665

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

            if (strict) {
            if (isRestrictedWord(token.value)) {
            throwErrorTolerant(token, Messages.StrictFunctionName);
            }
            } else {
            Severity: Major
            Found in server/public/jsx-transformer-0.12.2.js and 1 other location - About 3 hrs to fix
            server/public/jsx-transformer-0.12.2.js on lines 7733..7745

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

            function parseIntersectionType() {
            var marker = markerCreate(), type, types;
            type = parsePrefixType();
            types = [type];
            while (match('&')) {
            Severity: Major
            Found in server/public/jsx-transformer-0.12.2.js and 1 other location - About 3 hrs to fix
            server/public/jsx-transformer-0.12.2.js on lines 6455..6468

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

            function parseUnionType() {
            var marker = markerCreate(), type, types;
            type = parseIntersectionType();
            types = [type];
            while (match('|')) {
            Severity: Major
            Found in server/public/jsx-transformer-0.12.2.js and 1 other location - About 3 hrs to fix
            server/public/jsx-transformer-0.12.2.js on lines 6439..6453

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

            createFunctionDeclaration: function (id, params, defaults, body, rest, generator, expression,
            isAsync, returnType, typeParameters) {
            var funDecl = {
            type: Syntax.FunctionDeclaration,
            id: id,
            Severity: Major
            Found in server/public/jsx-transformer-0.12.2.js and 1 other location - About 3 hrs to fix
            server/public/jsx-transformer-0.12.2.js on lines 3877..3897

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

            createFunctionExpression: function (id, params, defaults, body, rest, generator, expression,
            isAsync, returnType, typeParameters) {
            var funExpr = {
            type: Syntax.FunctionExpression,
            id: id,
            Severity: Major
            Found in server/public/jsx-transformer-0.12.2.js and 1 other location - About 3 hrs to fix
            server/public/jsx-transformer-0.12.2.js on lines 3855..3875

            Function parse has 84 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            function parse(code, options) {
            var program, toString;
             
            toString = String;
            if (typeof code !== 'string' && !(code instanceof String)) {
            Severity: Major
            Found in server/public/jsx-transformer-0.12.2.js - About 3 hrs to fix

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

              function scanNumericLiteral() {
              var number, start, ch, octal;
               
              ch = source[index];
              assert(isDecimalDigit(ch.charCodeAt(0)) || (ch === '.'),
              Severity: Major
              Found in server/public/jsx-transformer-0.12.2.js - About 3 hrs to fix

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

                } else if (match('[')) {
                expr = markerApply(marker, delegate.createMemberExpression('[', expr, parseComputedMember()));
                } else if (match('.')) {
                expr = markerApply(marker, delegate.createMemberExpression('.', expr, parseNonComputedMember()));
                } else {
                Severity: Major
                Found in server/public/jsx-transformer-0.12.2.js and 1 other location - About 3 hrs to fix
                server/public/jsx-transformer-0.12.2.js on lines 5445..5451
                Severity
                Category
                Status
                Source
                Language