Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

eslint-plugin-require-jsdoc-except

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-require-jsdoc-except

A modified version of the built-in eslint rule require-jsdoc that allows you to exclude certain methods from requiring a JSDoc.

  • 1.5.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

eslint-plugin-require-jsdoc-except

This is a modified version of the built-in eslint rule require-jsdoc that allows you to exclude certain methods from requiring a JSDoc.

The rationale is that when using a framework such as React, there will be certain recurring method about which no useful docs can be made. There is no real point in describing each render method as "Renders the component", and any more than that will often just be a duplication of the component's JSDoc.

Installation

You'll first need to install ESLint:

npm install eslint --save-dev

Next, install eslint-plugin-require-jsdoc-except:

npm install eslint-plugin-require-jsdoc-except --save-dev

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

Usage

Add require-jsdoc-except to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
	"plugins": [
		"require-jsdoc-except"
	]
}

Then configure the rule. The main usage is as the built-in eslint rule require-jsdoc. In addition, this plugin adds a second option to the option object: ignore. This accepts a list of names for which the JSDoc requirement should not be enforced.

The following example would require all named functions to be documented, except for class constructors (or other functions named constructor).

{
    "rules": {
        "require-jsdoc-except/require-jsdoc": ["error", {
            "require": {
                "FunctionDeclaration": true,
                "MethodDefinition": true,
                "ClassDeclaration": true,
                "ArrowFunctionExpression": true,
                "FunctionExpression": true
            },
            "ignore": ["constructor"],
        }],
    }
}

NOTE: You may also need to disable the old require-jsdoc, as this will essentially replace it. If you do not, then both rules will be running at the same time.

{
    "rules": {
        "require-jsdoc": "off",
    }
}

Keywords

FAQs

Package last updated on 20 Aug 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

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