Showing 10,536 of 10,536 total issues

Function main has a Cognitive Complexity of 124 (exceeds 5 allowed). Consider refactoring.
Open

def main(logger):

    while True:
        # the outermost while loop
        ################################################################################################################
Severity: Minor
Found in myems-aggregation/energy_storage_power_station_billing_discharge.py - About 2 days to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function main has a Cognitive Complexity of 124 (exceeds 5 allowed). Consider refactoring.
Open

def main(logger):

    while True:
        # the outermost while loop
        ################################################################################################################
Severity: Minor
Found in myems-aggregation/microgrid_billing_charge.py - About 2 days to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

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

    @staticmethod
    def on_get(req, resp, id_):
        if 'API-KEY' not in req.headers or \
                not isinstance(req.headers['API-KEY'], str) or \
                len(str.strip(req.headers['API-KEY'])) == 0:
Severity: Major
Found in myems-api/core/protocol.py and 1 other location - About 2 days to fix
myems-api/core/protocol.py on lines 122..152

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

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

                if 'id' in point and isinstance(point['id'], int):
                    cursor.execute(" SELECT name, object_type "
                                   " FROM tbl_points "
                                   " WHERE id = %s ", (point['id'],))
                    row = cursor.fetchone()
Severity: Major
Found in myems-api/core/meter.py and 1 other location - About 2 days to fix
myems-api/core/meter.py on lines 1768..1803

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

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

    @staticmethod
    def on_get(req, resp, id_):
        if 'API-KEY' not in req.headers or \
                not isinstance(req.headers['API-KEY'], str) or \
                len(str.strip(req.headers['API-KEY'])) == 0:
Severity: Major
Found in myems-api/core/protocol.py and 1 other location - About 2 days to fix
myems-api/core/protocol.py on lines 268..299

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

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

                if 'id' in point and isinstance(point['id'], int):
                    cursor.execute(" SELECT name, object_type "
                                   " FROM tbl_points "
                                   " WHERE id = %s ", (point['id'],))
                    row = cursor.fetchone()
Severity: Major
Found in myems-api/core/meter.py and 1 other location - About 2 days to fix
myems-api/core/meter.py on lines 1622..1657

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

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

File emailAddresses.js has 1003 lines of code (exceeds 250 allowed). Consider refactoring.
Open

const result = [
  'rande@live.com',
  'jshirley@comcast.net',
  'sartak@hotmail.com',
  'cgarcia@comcast.net',
Severity: Major
Found in myems-web/src/data/email/emailAddresses.js - About 2 days to fix

    File markdown.js has 999 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    // Released under MIT license
    // Copyright (c) 2009-2010 Dominic Baggott
    // Copyright (c) 2009-2010 Ash Berlin
    // Copyright (c) 2011 Christoph Dorn <christoph@christophdorn.com> (http://www.christophdorn.com)
    
    
    Severity: Major
    Found in myems-admin/js/plugins/bootstrap-markdown/markdown.js - About 2 days to fix

      File bootstrap-markdown.js has 988 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      /* ===================================================
       * bootstrap-markdown.js v2.9.0
       * http://github.com/toopay/bootstrap-markdown
       * ===================================================
       * Copyright 2013-2015 Taufan Aditya
      Severity: Major
      Found in myems-admin/js/plugins/bootstrap-markdown/bootstrap-markdown.js - About 2 days to fix

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

        app.factory('CostCenterService', function($http) {
            return {
                getAllCostCenters:function(headers, callback){
                    $http.get(getAPI()+'costcenters', {headers})
                    .then(function (response) {
        myems-admin/app/services/settings/category/category.service.js on lines 2..45
        myems-admin/app/services/settings/contact/contact.service.js on lines 2..45
        myems-admin/app/services/settings/energystoragecontainer/energystoragecontainer.service.js on lines 2..45

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

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

        app.factory('CategoryService', function($http) {
            return {
                getAllCategories:function(headers, callback){
                    $http.get(getAPI()+'energycategories', {headers})
                    .then(function (response) {
        myems-admin/app/services/settings/contact/contact.service.js on lines 2..45
        myems-admin/app/services/settings/costcenter/costcenter.service.js on lines 2..45
        myems-admin/app/services/settings/energystoragecontainer/energystoragecontainer.service.js on lines 2..45

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

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

        app.factory('EnergyStorageContainerService', function($http) {
            return {
                getAllEnergyStorageContainers:function(headers, callback){
                    $http.get(getAPI()+'energystoragecontainers', {headers})
                    .then(function (response) {
        myems-admin/app/services/settings/category/category.service.js on lines 2..45
        myems-admin/app/services/settings/contact/contact.service.js on lines 2..45
        myems-admin/app/services/settings/costcenter/costcenter.service.js on lines 2..45

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

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

        app.factory('ContactService', function($http) {
            return {
                getAllContacts:function(headers, callback){
                    $http.get(getAPI()+'contacts', {headers})
                    .then(function (response) {
        Severity: Major
        Found in myems-admin/app/services/settings/contact/contact.service.js and 3 other locations - About 2 days to fix
        myems-admin/app/services/settings/category/category.service.js on lines 2..45
        myems-admin/app/services/settings/costcenter/costcenter.service.js on lines 2..45
        myems-admin/app/services/settings/energystoragecontainer/energystoragecontainer.service.js on lines 2..45

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

        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

        File ocLazyLoad.js has 987 lines of code (exceeds 250 allowed). Consider refactoring.
        Open

        /**
         * oclazyload - Load modules on demand (lazy load) with angularJS
         * @version v1.0.10
         * @link https://github.com/ocombe/ocLazyLoad
         * @license MIT
        Severity: Major
        Found in myems-admin/js/plugins/oclazyload/ocLazyLoad.js - About 2 days to fix

          File angular-datepicker.js has 984 lines of code (exceeds 250 allowed). Consider refactoring.
          Open

          (function (global, factory) {'use strict';var fnc;fnc = (typeof exports === 'object' && typeof module !== 'undefined') ? module.exports = factory(require('angular'), require('moment')) :(typeof define === 'function' && define.amd) ? define(['angular', 'moment'], factory) :factory(global.angular, global.moment);}(this, function (angular, moment) {
          //(function (global, factory) {
          //  'use strict';
          //  var fnc;
          //  fnc = (typeof exports === 'object' && typeof module !== 'undefined') ? module.exports = factory(require('angular'), require('moment')) :
          Severity: Major
          Found in myems-admin/js/plugins/datapicker/angular-datepicker.js - About 2 days to fix

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

            Severity: Major
            Found in myems-api/excelexporters/microgridreporting.py and 3 other locations - About 2 days to fix
            myems-api/excelexporters/microgridreportingcarbon.py on lines 0..75
            myems-api/excelexporters/microgridreportingenergy.py on lines 0..75
            myems-api/excelexporters/microgridreportingrevenue.py on lines 0..75

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

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

            Severity: Major
            Found in myems-api/excelexporters/microgridreportingcarbon.py and 3 other locations - About 2 days to fix
            myems-api/excelexporters/microgridreporting.py on lines 0..75
            myems-api/excelexporters/microgridreportingenergy.py on lines 0..75
            myems-api/excelexporters/microgridreportingrevenue.py on lines 0..75

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

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

            Severity: Major
            Found in myems-api/excelexporters/microgridreportingenergy.py and 3 other locations - About 2 days to fix
            myems-api/excelexporters/microgridreporting.py on lines 0..75
            myems-api/excelexporters/microgridreportingcarbon.py on lines 0..75
            myems-api/excelexporters/microgridreportingrevenue.py on lines 0..75

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

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

            Severity: Major
            Found in myems-api/excelexporters/microgridreportingrevenue.py and 3 other locations - About 2 days to fix
            myems-api/excelexporters/microgridreporting.py on lines 0..75
            myems-api/excelexporters/microgridreportingcarbon.py on lines 0..75
            myems-api/excelexporters/microgridreportingenergy.py on lines 0..75

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

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

            angular.module("ngLocale", [], ["$provide", function($provide) {
            var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
            $provide.value("$locale", {
              "DATETIME_FORMATS": {
                "AMPMS": [
            Severity: Major
            Found in myems-admin/js/angular/i18n/angular-locale_fa-ir.js and 79 other locations - About 2 days to fix
            myems-admin/js/angular/i18n/angular-locale_am-et.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_am.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_bn-bd.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_bn-in.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_bn.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fa-af.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fa.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-be.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-bf.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-bi.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-bj.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-bl.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-ca.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-cd.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-cf.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-cg.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-ch.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-ci.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-cm.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-dj.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-dz.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-fr.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-ga.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-gf.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-gn.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-gp.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-gq.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-ht.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-km.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-lu.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-ma.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-mc.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-mf.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-mg.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-ml.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-mq.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-mr.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-mu.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-nc.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-ne.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-pf.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-pm.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-re.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-rw.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-sc.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-sn.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-sy.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-td.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-tg.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-tn.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-vu.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-wf.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr-yt.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_fr.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_gu-in.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_gu.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_hi-in.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_hi.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_hy-am.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_hy.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_kn-in.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_kn.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_mr-in.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_mr.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_pt-ao.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_pt-br.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_pt-ch.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_pt-cv.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_pt-gq.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_pt-gw.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_pt-lu.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_pt-mo.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_pt-mz.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_pt-pt.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_pt-st.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_pt-tl.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_pt.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_zu-za.js on lines 2..125
            myems-admin/js/angular/i18n/angular-locale_zu.js on lines 2..125

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

            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

            Severity
            Category
            Status
            Source
            Language