Showing 8 of 14 total issues
Function exports
has 92 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
module.exports = function (app) {
'use strict';
return function (client) {
var userInfo = {};
var self = this;
Function exports
has 86 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
module.exports = function (app) {
'use strict';
return function (req, res) {
var deviceRex = /^\/(.*)\/(.*)\?/;
Function exports
has 86 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
module.exports = function (sequelize, DataTypes) {
function hashPasswordHook(user, options, done) {
if (!user.changed('password')) {
done();
}
Function exports
has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring. Open
Open
module.exports = function (app) {
'use strict';
return function (req, res) {
var deviceRex = /^\/(.*)\/(.*)\?/;
- Read upRead up
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 exports
has 41 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
module.exports = function (app) {
'use strict';
app.get(/^\/(.*)\/(.*)$/, function (req, res) {
if (!req.headers.authorization) {
res.statusCode = 401;
Function up
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
up: function(queryInterface, Sequelize) {
return queryInterface.createTable('Users', {
id: {
allowNull: false,
autoIncrement: true,
Function exports
has 31 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
module.exports = function (app) {
'use strict';
return function (server) {
server.on('connection', function (socket) {
if (!socket.upgradeReq.headers.authorization || socket.upgradeReq.headers.authorization === undefined) {
Function up
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
up: function(queryInterface, Sequelize) {
return queryInterface.createTable('Messages', {
id: {
allowNull: false,
autoIncrement: true,