Ensures that all typescript exported types and classes have TSDoc comments
You'll first need to install ESLint:
npm i eslint --save-devNext, install eslint-plugin-tsdoc-require:
npm install eslint-plugin-tsdoc-require --save-devAdd tsdoc-require to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": [
"tsdoc-require"
]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"tsdoc-require/require": 2
}
}| Name | Description |
|---|---|
| require | Ensures that all typescript exported types and classes have TSDoc comments |