UNPKG

eslint-plugin-lodash

Version:
18 lines (14 loc) 524 B
'use strict' const pkg = require('../../package') const REPO_URL = 'https://github.com/wix/eslint-plugin-lodash' /** * 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 */ module.exports = function getDocsUrl(ruleName) { return `${REPO_URL}/blob/v${pkg.version}/docs/rules/${ruleName}.md` }