Socket
Socket
Sign inDemoInstall

eslint-plugin-additional-return-rules

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-additional-return-rules

Return rules


Version published
Weekly downloads
33
increased by37.5%
Maintainers
1
Weekly downloads
 
Created
Source

eslint-plugin-additional-return-rules

Prevent using return;

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-additional-return-rules:

$ npm install eslint-plugin-additional-return-rules --save-dev

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

Usage

Add additional-return-rules to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
    "plugins": [
        "additional-return-rules"
    ]
}

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

{
    "rules": {
        "additional-return-rules/return-no-semi": 2
    }
}

Supported Rules

  • return-no-semi

Keywords

FAQs

Package last updated on 10 Aug 2017

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc