Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@sinonjs/eslint-plugin-no-prototype-methods

sinonjs107ISC0.1.1

Disallow direct use of prototype methods of builtins

eslint, eslintplugin, eslint-plugin

readme

eslint-plugin-no-prototype-methods

Disallow direct use of prototype methods of builtins

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-no-prototype-methods:

$ npm install eslint-plugin-no-prototype-methods --save-dev

Usage

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

{
    "plugins": [
        "no-prototype-methods"
    ]
}

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

{
    "rules": {
        "no-prototype-methods/rule-name": 2
    }
}

Supported Rules

  • Fill in provided rules here

changelog

Changes

0.1.1

  • 507c254 Add tests for no-prototype-methods This also fixes a bug, where arrays were not always detected, because of the overlap in prototype methods with object

Released on 2020-11-26.

0.1.0

Released on 2020-10-21.