Showing 1,485 of 3,294 total issues
Avoid too many return
statements within this function. Open
return true;
Avoid too many return
statements within this function. Open
return textOrLines.substr(0, offset).split("\n").length - 1;
Function addFilesToCache
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function addFilesToCache(updateObject) {
var fileList = updateObject.fileList || [],
filesInSearchScope = updateObject.filesInSearchScope || [],
i = 0,
changedFilesAlreadyInList = [],
- 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 request
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
LanguageClient.prototype.request = function (params) {
var messageParams = params.params;
if (messageParams && messageParams.messageType === MESSAGE_TYPE.BRACKETS) {
if (!messageParams.type) {
console.log("Invalid brackets request");
- 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
Method writeTOCDomain
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def writeTOCDomain(info)
domain = info["domain"]
unless info["types"].empty?
write "<span class='label'>Type</span>", "<ul>"
info["types"].each { |p| writeTOCLine domain, p }
- 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"