@openreachtech/eslint-rules-default-jsdoc
v1.0.2
Published
A showcasing package all the JSDoc plugin rules of ESLint.
Readme
eslint-rules-default-jsdoc
Language
Overview
This package provides ESLint JSDoc plugin rules with default options.
If this package is used as a base ruleset in another ESLint config repository, all rules are enabled by default. You must explicitly turn off each rule that you want to disable.
This package is only for Flat Config.
Usage
Installing
Please add the following line to your .npmrc file.
// .npmrc
@openreachtech:registry=https://npm.pkg.github.comInstall this package alongside ESLint v9 or greater:
npm install --save-dev \
eslint \
@openreachtech/eslint-rules-default-jsdocConfiguring
In your eslint.config.js file, import @openreachtech/eslint-rules-default-jsdoc and include the all rules to use it:
// eslint.config.js
import jsdocPlugin from '@openreachtech/eslint-rules-default-jsdoc'
export default [
{
...jsdocPlugin,
rules: {
...jsdocPlugin.rules,
'jsdoc/no-multi-asterisks': [
'error',
{
allowWhitespace: false, // true
preventAtEnd: true,
preventAtMiddleLines: true,
},
],
'jsdoc/tag-lines': [
'error',
'never',
{
count: 1,
startLines: 1, // 0
endLines: 0,
applyToEndTag: true,
tags: {},
},
],
},
},
]Track of Changes with Line Comments
When overwriting default values in each ESLint Config package, we recommend leaving the default values as line comments.
// eslint.config.js
import jsdocPlugin from '@openreachtech/eslint-rules-default-jsdoc'
export default [
{
...jsdocPlugin,
rules: {
...jsdocPlugin.rules,
'jsdoc/no-multi-asterisks': [
'error',
{
allowWhitespace: false, // true <--- ✅
preventAtEnd: true,
preventAtMiddleLines: true,
},
],
'jsdoc/tag-lines': [
'error',
'never',
{
count: 1,
startLines: 1, // 0 <--- ✅
endLines: 0,
applyToEndTag: true,
tags: {},
},
],
},
},
]License
This project is released under the MIT License.
See → LICENSE
Contributing
We welcome bug reports, feature requests, and ruleset contributions.
Please feel free to contact us through GitHub Issues or Pull Requests.
We strive to meet user expectations and your contributions are highly appreciated!
% git clone https://github.com/openreachtech/eslint-rules-default-jsdoc.git
% cd eslint-rules-default-jsdoc
% npm install
% npm run lint
% npm test