2.1.0 • Published 1 year ago

@atlassian/eslint-plugin-onready-checks v2.1.0

Weekly downloads
-
License
SEE LICENSE IN LI...
Repository
-
Last release
1 year ago

Document onReady checks ESLint plugin

Several rules to discover direct and indirect usages of the DOMContentLoaded event.

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install @atlassian/eslint-plugin-onready-checks:

$ npm install @atlassian/eslint-plugin-onready-checks --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install @atlassian/eslint-plugin-onready-checks globally.

Usage

Add onready-checks to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
    "plugins": ["@atlassian/onready-checks"]
}

Then configure the rules you want to use under the rules section.

{
    "rules": {
        "onready-checks/rule-name": 2
    }
}

Supported Rules

  • no-ajs-toinit - Checks for use of the AJS.toInit function
  • no-domcontentloaded-handlers - Checks for direct use of the DOMContentLoaded event
  • no-jquery-onready - Checks for use of the DOMContentLoaded event via jQuery's onReady handling
2.1.0

1 year ago