Showing 2,717 of 2,717 total issues
Avoid too many return
statements within this function. Open
return ("(Ancient variable, use settings menu) <br>" + which + ": " + iofs.load(system.user.paths.userPath + "settings/" + which.split(" ")[0] + ".txt"));
Avoid too many return
statements within this function. Open
return "Ran JS Command";
Avoid too many return
statements within this function. Open
return(`${system.osDetails.name} Version: ${system.osDetails.version}`);
Avoid too many return
statements within this function. Open
return "";
Avoid too many return
statements within this function. Open
return "<b style='color:#f55; font-weight:inherit'>Command not found. Try /mc:help to get help.</b>";
Avoid too many return
statements within this function. Open
return JSON.parse(iofs.load(path)).icon;
Avoid too many return
statements within this function. Open
return "";
Avoid too many return
statements within this function. Open
return "Command not defined";
Similar blocks of code found in 2 locations. Consider refactoring. Open
if(myProgram.sandbox == 1) {
myWindow.classList.add("sandbox_l2");
myWindow.frame.sandbox = "allow-scripts allow-forms";
}
- 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 45.
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
Function install
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function install() {
if(!iofs.exists(storagePath)) {
iofs.save(storagePath, "", "t=dir", 0, 1);
}
- 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 createNotificationIcon
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function createNotificationIcon() {
if(parent.document.getElementById("taskbarrighticons")) {
if(!parent.document.getElementById("notifications")) {
let notificationIconTemp = document.createElement("a");
notificationIconTemp.id = "notifications";
- 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 explorerdofile
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function explorerdofile(path, action) { // Run if program is clicked
var fileinfos = iofs.getInfos(path);
let filename = fileinfos.name;
var fileending = fileinfos.ending;
- 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 loginUser
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function loginUser(name) {
// only once document.body is loaded - temporary fix - sometimes document.body isn't loaded when browser is in background
if(!document.body) {
setTimeout(function() {
loginUser(name);
- 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 getWindowByMagic
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function getWindowByMagic(which) {
var result;
if(result == undefined || result == null || result == "") {
result = getWindowByPid(which);
}
- 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 updateBottomInfo
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function updateBottomInfo() {
let amountFiles = 0;
let amountDirs = 0;
for(let file of filesListed) {
- 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 register
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function register() {
if(os?.document.getElementById("taskbar")) {
if(!os.document.getElementById("start")) {
let startButton = document.createElement("button");
startButton.id = "start";
- 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
Rule doesn't have all its properties in alphabetical order. Open
.noborder iframe {
- Exclude checks
Rule doesn't have all its properties in alphabetical order. Open
.program {
- Exclude checks
Adjoining classes: .program.closing Open
.program.closing {
- Exclude checks
Rule doesn't have all its properties in alphabetical order. Open
.program.fullscreen {
- Exclude checks