| 1234567891011121314151617 | '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
 |