Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
eslint-plugin-require-jsdoc-except
Advanced tools
A modified version of the built-in eslint rule require-jsdoc that allows you to exclude certain methods from requiring a JSDoc.
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.
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.
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",
}
}
FAQs
A modified version of the built-in eslint rule require-jsdoc that allows you to exclude certain methods from requiring a JSDoc.
The npm package eslint-plugin-require-jsdoc-except receives a total of 303 weekly downloads. As such, eslint-plugin-require-jsdoc-except popularity was classified as not popular.
We found that eslint-plugin-require-jsdoc-except demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.