Showing 171 of 171 total issues
Function Queries
has 673 lines of code (exceeds 25 allowed). Consider refactoring. Open
var Queries = (function() {
function Queries(domain, cache) {
if (typeof(domain) !== 'string') {
throw new Error('Domain parameter must be specified as a string.');
}
File account.api.28.io.js
has 1279 lines of code (exceeds 250 allowed). Consider refactoring. Open
/*jshint -W069 */
/*global angular:false */
angular.module('account.api.28.io', [])
.factory('Account', ['$q', '$http', '$rootScope', function($q, $http, $rootScope) {
'use strict';
Similar blocks of code found in 2 locations. Consider refactoring. Open
Project.prototype.checkProject = function(parameters) {
if (parameters === undefined) {
parameters = {};
}
var deferred = $q.defer();
- Read upRead up
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 548.
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
- Extract Method
- Extract Class
- Form Template Method
- Introduce Null Object
- Pull Up Method
- Pull Up Field
- Substitute Algorithm
Further Reading
- Don't Repeat Yourself on the C2 Wiki
- Duplicated Code on SourceMaking
- Refactoring: Improving the Design of Existing Code by Martin Fowler. Duplicated Code, p76
Similar blocks of code found in 2 locations. Consider refactoring. Open
Account.prototype.checkAccount = function(parameters) {
if (parameters === undefined) {
parameters = {};
}
var deferred = $q.defer();
- Read upRead up
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 548.
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
- Extract Method
- Extract Class
- Form Template Method
- Introduce Null Object
- Pull Up Method
- Pull Up Field
- Substitute Algorithm
Further Reading
- Don't Repeat Yourself on the C2 Wiki
- Duplicated Code on SourceMaking
- Refactoring: Improving the Design of Existing Code by Martin Fowler. Duplicated Code, p76
File project.api.28.io.js
has 1196 lines of code (exceeds 250 allowed). Consider refactoring. Open
/*jshint -W069 */
/*global angular:false */
angular.module('project.api.28.io', [])
.factory('Project', ['$q', '$http', '$rootScope', function($q, $http, $rootScope) {
'use strict';
Function Modules
has 392 lines of code (exceeds 25 allowed). Consider refactoring. Open
var Modules = (function() {
function Modules(domain, cache) {
if (typeof(domain) !== 'string') {
throw new Error('Domain parameter must be specified as a string.');
}
File queries.api.28.io.js
has 680 lines of code (exceeds 250 allowed). Consider refactoring. Open
/*jshint -W069 */
/*global angular:false */
angular.module('queries.api.28.io', [])
.factory('Queries', ['$q', '$http', '$rootScope', function($q, $http, $rootScope) {
'use strict';
Function exports
has 305 lines of code (exceeds 25 allowed). Consider refactoring. Open
module.exports = function (grunt) {
'use strict';
require('load-grunt-tasks')(grunt);
require('time-grunt')(grunt);
File modules.api.28.io.js
has 399 lines of code (exceeds 250 allowed). Consider refactoring. Open
/*jshint -W069 */
/*global angular:false */
angular.module('modules.api.28.io', [])
.factory('Modules', ['$q', '$http', '$rootScope', function($q, $http, $rootScope) {
'use strict';
Function Batch
has 103 lines of code (exceeds 25 allowed). Consider refactoring. Open
var Batch = (function() {
function Batch(domain, cache) {
if (typeof(domain) !== 'string') {
throw new Error('Domain parameter must be specified as a string.');
}
Function testDefaultMongoDB
has 93 lines of code (exceeds 25 allowed). Consider refactoring. Open
Project.prototype.testDefaultMongoDB = function(parameters) {
if (parameters === undefined) {
parameters = {};
}
var deferred = $q.defer();
Function listCollection
has 92 lines of code (exceeds 25 allowed). Consider refactoring. Open
Datasources.prototype.listCollection = function(parameters) {
if (parameters === undefined) {
parameters = {};
}
var deferred = $q.defer();
Function Auth
has 91 lines of code (exceeds 25 allowed). Consider refactoring. Open
var Auth = (function() {
function Auth(domain, cache) {
if (typeof(domain) !== 'string') {
throw new Error('Domain parameter must be specified as a string.');
}
Function createAccount
has 88 lines of code (exceeds 25 allowed). Consider refactoring. Open
Account.prototype.createAccount = function(parameters) {
if (parameters === undefined) {
parameters = {};
}
var deferred = $q.defer();
Function updateItem
has 87 lines of code (exceeds 25 allowed). Consider refactoring. Open
Datasources.prototype.updateItem = function(parameters) {
if (parameters === undefined) {
parameters = {};
}
var deferred = $q.defer();
Function updateDefaultMongoDBCredentials
has 87 lines of code (exceeds 25 allowed). Consider refactoring. Open
Project.prototype.updateDefaultMongoDBCredentials = function(parameters) {
if (parameters === undefined) {
parameters = {};
}
var deferred = $q.defer();
Function getItem
has 85 lines of code (exceeds 25 allowed). Consider refactoring. Open
Datasources.prototype.getItem = function(parameters) {
if (parameters === undefined) {
parameters = {};
}
var deferred = $q.defer();
File Gruntfile.js
has 308 lines of code (exceeds 250 allowed). Consider refactoring. Open
module.exports = function (grunt) {
'use strict';
require('load-grunt-tasks')(grunt);
require('time-grunt')(grunt);
Function createDatasource
has 82 lines of code (exceeds 25 allowed). Consider refactoring. Open
Datasources.prototype.createDatasource = function(parameters) {
if (parameters === undefined) {
parameters = {};
}
var deferred = $q.defer();
Function insertInCollection
has 82 lines of code (exceeds 25 allowed). Consider refactoring. Open
Datasources.prototype.insertInCollection = function(parameters) {
if (parameters === undefined) {
parameters = {};
}
var deferred = $q.defer();