1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/eslint-plugin-promise/rules/lib/get-docs-url.js

18 lines
500 B
JavaScript
Raw Normal View History

2023-12-18 13:12:25 +08: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) {
2024-01-16 21:26:16 +08:00
return `${REPO_URL}/blob/master/docs/rules/${ruleName}.md`
2023-12-18 13:12:25 +08:00
}
module.exports = getDocsUrl