Sha256: a551b044b5385258256a36f930b872ce53e4e01d829fbfbc1f2000fbea6e5c8e
Contents?: true
Size: 547 Bytes
Versions: 43
Compression:
Stored size: 547 Bytes
Contents
'use strict' const pkg = require('../../package') 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}/tree/v${pkg.version}/docs/rules/${ruleName}.md` } module.exports = getDocsUrl
Version data entries
43 entries across 43 versions & 1 rubygems