altereagle/paperboy

View on GitHub

Showing 77 of 77 total issues

Don't use IDs in selectors.
Open

#jump_to, #jump_wrapper {
Severity: Minor
Found in docs/docco.css by csslint

Don't use IDs in selectors.
Open

  #jump_to, #jump_page {
Severity: Minor
Found in docs/docco.css by csslint

Don't use IDs in selectors.
Open

  #jump_to, #jump_page {
Severity: Minor
Found in docs/docco.css by csslint

Don't use IDs in selectors.
Open

  #background {
Severity: Minor
Found in docs/docco.css by csslint

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

@font-face {
Severity: Minor
Found in docs/docco.css by csslint

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

body {
Severity: Minor
Found in docs/docco.css by csslint

Heading (h1) has already been defined.
Open

h1 {
Severity: Minor
Found in docs/docco.css by csslint

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

ul.sections {
Severity: Minor
Found in docs/docco.css by csslint

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

#jump_to a.small {
Severity: Minor
Found in docs/docco.css by csslint

Don't use IDs in selectors.
Open

#jump_page_wrapper{
Severity: Minor
Found in docs/docco.css by csslint

The property -moz-appearance is compatible with -webkit-appearance and should be included as well.
Open

    -webkit-appearance: none;

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

#jump_page {
Severity: Minor
Found in docs/docco.css by csslint

Unexpected console statement.
Open

                  console.info(`paperboy-communicator stderr: ${stderr}`);
Severity: Minor
Found in index.js by eslint

disallow the use of console (no-console)

In JavaScript that is designed to be executed in the browser, it's considered a best practice to avoid using methods on console. Such messages are considered to be for debugging purposes and therefore not suitable to ship to the client. In general, calls using console should be stripped before being pushed to production.

console.log("Made it here.");
console.error("That shouldn't have happened.");

Rule Details

This rule disallows calls to methods of the console object.

Examples of incorrect code for this rule:

/*eslint no-console: "error"*/

console.log("Log a debug level message.");
console.warn("Log a warn level message.");
console.error("Log an error level message.");

Examples of correct code for this rule:

/*eslint no-console: "error"*/

// custom console
Console.log("Hello world!");

Options

This rule has an object option for exceptions:

  • "allow" has an array of strings which are allowed methods of the console object

Examples of additional correct code for this rule with a sample { "allow": ["warn", "error"] } option:

/*eslint no-console: ["error", { allow: ["warn", "error"] }] */

console.warn("Log a warn level message.");
console.error("Log an error level message.");

When Not To Use It

If you're using Node.js, however, console is used to output information to the user and so is not strictly used for debugging purposes. If you are developing for Node.js then you most likely do not want this rule enabled.

Related Rules

Missing standard property 'border-bottom-left-radius' to go along with '-moz-border-radius-bottomleft'.
Open

  -webkit-border-bottom-left-radius: 5px; -moz-border-radius-bottomleft: 5px;
Severity: Minor
Found in docs/docco.css by csslint

Don't use IDs in selectors.
Open

#jump_page {
Severity: Minor
Found in docs/docco.css by csslint

Rule is empty.
Open

#jump_page .source:first-child {
Severity: Minor
Found in docs/docco.css by csslint

Don't use IDs in selectors.
Open

  #jump_page .source {
Severity: Minor
Found in docs/docco.css by csslint

Don't use IDs in selectors.
Open

  #jump_to a.large {
Severity: Minor
Found in docs/docco.css by csslint

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

h1, h2, h3, h4, h5, h6 {
Severity: Minor
Found in docs/docco.css by csslint

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

  .pilwrap {
Severity: Minor
Found in docs/docco.css by csslint
Severity
Category
Status
Source
Language