Showing 109 of 171 total issues
Function Datasources
has 1301 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
var Datasources = (function() {
function Datasources(domain, cache) {
if (typeof(domain) !== 'string') {
throw new Error('Domain parameter must be specified as a string.');
}
Function Account
has 1272 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
var Account = (function() {
function Account(domain, cache) {
if (typeof(domain) !== 'string') {
throw new Error('Domain parameter must be specified as a string.');
}
Function Project
has 1189 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
var Project = (function() {
function Project(domain, cache) {
if (typeof(domain) !== 'string') {
throw new Error('Domain parameter must be specified as a string.');
}
File datasources.api.28.io.js
has 1308 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
/*jshint -W069 */
/*global angular:false */
angular.module('datasources.api.28.io', [])
.factory('Datasources', ['$q', '$http', '$rootScope', function($q, $http, $rootScope) {
'use strict';
Function Queries
has 673 lines of code (exceeds 25 allowed). Consider refactoring. Open
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
Open
/*jshint -W069 */
/*global angular:false */
angular.module('account.api.28.io', [])
.factory('Account', ['$q', '$http', '$rootScope', function($q, $http, $rootScope) {
'use strict';
File project.api.28.io.js
has 1196 lines of code (exceeds 250 allowed). Consider refactoring. Open
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
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
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
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
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
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
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
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
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
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
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
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
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
Open
module.exports = function (grunt) {
'use strict';
require('load-grunt-tasks')(grunt);
require('time-grunt')(grunt);