https://github.com/sinonjs/eslint-plugin-no-prototype-methods
https://github.com/sinonjs/eslint-plugin-no-prototype-methods
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sinonjs/eslint-plugin-no-prototype-methods
- Owner: sinonjs
- License: bsd-3-clause
- Created: 2020-10-21T20:49:31.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-12-29T10:35:23.000Z (over 2 years ago)
- Last Synced: 2024-05-22T18:34:30.959Z (about 2 years ago)
- Language: JavaScript
- Size: 60.5 KB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- License: LICENSE
Awesome Lists containing this project
README
# eslint-plugin-no-prototype-methods
Disallow direct use of prototype methods of builtins
## Installation
You'll first need to install [ESLint](http://eslint.org):
```
$ npm i eslint --save-dev
```
Next, install `eslint-plugin-no-prototype-methods`:
```
$ npm install @sinonjs/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:
```json
{
"plugins": [
"no-prototype-methods"
]
}
```
Then configure the rules you want to use under the rules section.
```json
{
"rules": {
"no-prototype-methods/rule-name": 2
}
}
```
## Supported Rules
* Fill in provided rules here