This plugin raises a warning if a js file has been modified without it's JSDoc being updated.
Install:
yarn add danger-plugin-jsdoc --dev
At a glance:
// dangerfile.js
import jsdoc from "danger-plugin-jsdoc"
jsdoc({
includes: ["**/*.js"],
excludes: ["**/*.spec.js"],
warningMessage: "Oops, you may need to update your JSDoc",
})
Configuration:
Option | Type | Default | Description |
---|---|---|---|
includes | string[] | ["**/*.js"] |
Glob patterns to match files to be checked |
excludes | string[] | [] |
Glob patterns to match files that should not be checked even if it is in includes |
warningMessage | string | "This js file have been changed without updating its JSDoc, please update it's JSDoc if necessary" |
Warning message that will appear in the PR file comment |
See the GitHub release history.
See CONTRIBUTING.md.