altereagle/arc.app-example

View on GitHub

Showing 75 of 75 total issues

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, #jump_page {
Severity: Minor
Found in docs/docco.css by csslint

Don't use IDs in selectors.
Open

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

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

  ul.sections > li > div.annotation {
Severity: Minor
Found in docs/docco.css by csslint

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

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

The box-sizing property isn't supported in IE6 and IE7.
Open

    box-sizing: border-box; /* 1 */

Expected (none | button | button-bevel | caps-lock-indicator | caret | checkbox | default-button | listbox | listitem | media-fullscreen-button | media-mute-button | media-play-button | media-seek-back-button | media-seek-forward-button | media-slider | media-sliderthumb | menulist | menulist-button | menulist-text | menulist-textfield | push-button | radio | searchfield | searchfield-cancel-button | searchfield-decoration | searchfield-results-button | searchfield-results-decoration | slider-horizontal | slider-vertical | sliderthumb-horizontal | sliderthumb-vertical | square-button | textarea | textfield | scrollbarbutton-down | scrollbarbutton-left | scrollbarbutton-right | scrollbarbutton-up | scrollbargripper-horizontal | scrollbargripper-vertical | scrollbarthumb-horizontal | scrollbarthumb-vertical | scrollbartrack-horizontal | scrollbartrack-vertical) but found 'textfield'.
Open

    -webkit-appearance: textfield; /* 1 */

Unexpected console statement.
Open

    console.log(`Arc Example Online`.bold.cyan);
Severity: Minor
Found in basic_example.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

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

#jump_page {
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 is empty.
Open

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

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

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

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

  ul.sections > li > div.content {
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

TODO found
Open

# TODO: Test the API server view
Severity
Category
Status
Source
Language