Constnium/node_modules/eslint-plugin-promise/rules/lib/get-docs-url.js

18 lines
500 B
JavaScript
Raw Normal View History

2022-06-23 02:27:43 +02:00
'use strict'
const REPO_URL = 'https://github.com/xjamundx/eslint-plugin-promise'
/**
* Generates the URL to documentation for the given rule name. It uses the
* package version to build the link to a tagged version of the
* documentation file.
*
* @param {string} ruleName - Name of the eslint rule
* @returns {string} URL to the documentation for the given rule
*/
function getDocsUrl(ruleName) {
return `${REPO_URL}/blob/master/docs/rules/${ruleName}.md`
}
module.exports = getDocsUrl