Showing 4 of 4 total issues
Function authenticate
has 62 lines of code (exceeds 25 allowed). Consider refactoring. Open
WechatEnterpriseStrategy.prototype.authenticate = function(req, options) {
options = options || {}
var self = this
var callbackURL = options.callbackURL || this._callbackURL
Function authenticate
has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring. Open
WechatEnterpriseStrategy.prototype.authenticate = function(req, options) {
options = options || {}
var self = this
var callbackURL = options.callbackURL || this._callbackURL
- 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 originalURL
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
exports.originalURL = function(req, options) {
options = options || {}
var app = req.app
if (app && app.get && app.get('trust proxy')) {
options.proxy = true
- 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 WechatEnterpriseStrategy
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function WechatEnterpriseStrategy(options, verify, getAccessToken, saveAccessToken) {
options = options || {}
if (!verify) {
throw new Error('WechatEnterpriseStrategy requires a verify callback')
- 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"