
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
@netsells/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 @netsells/eslint-plugin-require-jsdoc-except
:
npm install @netsells/eslint-plugin-require-jsdoc-except --save-dev
Note: If you installed ESLint globally (using the -g
flag) then you must also install
@netsells/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": [
"@netsells/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.
We found that @netsells/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 5 open source maintainers 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
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.