🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

eslint-plugin-no-jquery

Package Overview
Dependencies
Maintainers
17
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-no-jquery

Disallow jQuery functions with native equivalents.

2.4.0
Source
npm
Version published
Weekly downloads
114K
-21.05%
Maintainers
17
Weekly downloads
 
Created
Source

eslint-plugin-no-jquery

Disallow jQuery functions, with suggestions for native equivalents where possible.

Originally a fork of eslint-plugin-jquery.

⬇️ Installation

You'll first need to install ESLint:

npm install eslint --save-dev

Next, install eslint-plugin-no-jquery:

npm install eslint-plugin-no-jquery --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-no-jquery globally.

🛠️ Usage

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

{
  "extends": "plugin:no-jquery/deprecated",
  "plugins": [
    "no-jquery"
  ]
}

The pre-set profile plugin:no-jquery/deprecated includes all known deprecated and removed code, and is updated as new releases of jQuery come out. You can instead use profiles targetting specific versions of jQuery if you know the environment in which your code will operate. There is a profile for jQuery 3.5.x+ environments (deprecated-3.5), and profiles for other minor releases that include deprecations (deprecated-3.4, deprecated-1.10 etc.). Deprecation profiles are cumulative, so they include all the rules for jQuery versions below them.

Alternatively, you can pick out rules individually (see below).

⚙️ Settings

The following global settings can be used under the no-jquery property to configure the linter:

  • constructorAliases - An array of aliases for the jQuery constructor. Defaults to [ "$", "jQuery" ].
  • variablePattern - Regular expression pattern for matching jQuery variables. Defaults to "^\\$.". This pattern can be enforced with the no-jquery/variable-pattern rule.
  • collectionReturningPlugins - An object describing the return types of jQuery plugins. Keys are plugin method names, and values can be one of:
    • 'always' a plugin which always returns a jQuery collection.
      • e.g. $bar = $foo.stop()
    • 'accessor' a plugin which only returns a jQuery collection when an argument is given.
      • e.g. w = $foo.width(), $bar = $foo.width( 200 )
    • 'valueAccessor' a plugin which only returns a jQuery collection when more than one argument is given.
      • e.g. w = $foo.css( 'width' ), $bar = $foo.css( 'width', '1em' )
    • 'never' (default) a plugin which never returns a jQuery collection.
      • e.g. arr = $foo.toArray()
{
  "settings": {
    "no-jquery": {
        "constructorAliases": [ "$", "jQuery" ],
        "variablePattern": "^\\$.|^element$",
        "collectionReturningPlugins": {
          "datePicker": "always"
        }
    }
  },
  "plugins": [
    "no-jquery"
  ]
}

📖 Rules

Where rules are included in the pre-set profiles slim or deprecated-X.X it is indicated below. Where rules are included with options this is indicated with a .

⚠️ Deprecated

🤖 Development

npm install
npm test

To update documentation after modifying a rule or its tests, use

npm run doc

To run a specific test or tests:

npm run testpath tests/rules/no-ajax

⚖️ License

Distributed under the MIT license. See LICENSE for details.

Keywords

eslint

FAQs

Package last updated on 04 May 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts