Mikej81/WebRDP

View on GitHub

Showing 963 of 964 total issues

Use of !important
Open

        display:table-cell!important
Severity: Minor
Found in client/css/bootstrap.min.css by csslint

Rule doesn't have all its properties in alphabetical order.
Open

#header {
Severity: Minor
Found in client/css/webrdp.css by csslint

Unnecessary semicolon.
Open

};
Severity: Minor
Found in socket/screen.js by eslint

disallow unnecessary semicolons (no-extra-semi)

Typing mistakes and misunderstandings about where semicolons are required can lead to semicolons that are unnecessary. While not technically an error, extra semicolons can cause confusion when reading code.

Rule Details

This rule disallows unnecessary semicolons.

Examples of incorrect code for this rule:

/*eslint no-extra-semi: "error"*/

var x = 5;;

function foo() {
    // code
};

Examples of correct code for this rule:

/*eslint no-extra-semi: "error"*/

var x = 5;

var foo = function() {
    // code
};

When Not To Use It

If you intentionally use extra semicolons then you can disable this rule.

Related Rules

Severity
Category
Status
Source
Language