Permalink
Cannot retrieve contributors at this time
49 lines (38 sloc)
1.01 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/eslint-rule-documentation/index.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var plugins = require('./plugins.json'); | |
for (var pluginName of Object.keys(plugins)) { | |
var url = plugins[pluginName]; | |
if (!url.includes('/')) { | |
url += '/eslint-plugin-' + pluginName; | |
} | |
if (url.split('/').length === 2) { | |
url = 'https://github.com/' + url + '/blob/master/docs/rules/RULENAME.md'; | |
} | |
plugins[pluginName] = url; | |
} | |
function getRuleURI(ruleId) { | |
if (typeof ruleId !== 'string') { | |
throw new TypeError(`ruleId must be a string, got ${typeof ruleId}`); | |
} | |
var ruleParts = ruleId.split('/'); | |
if (ruleParts.length === 1) { | |
return { | |
found: true, | |
url: 'https://eslint.org/docs/rules/' + ruleId | |
}; | |
} | |
var pluginName = ruleParts[0]; | |
var ruleName = ruleParts[1]; | |
var url = plugins[pluginName]; | |
if (!url) { | |
return { | |
found: false, | |
url: 'https://github.com/jfmengels/eslint-rule-documentation/blob/master/contributing.md' | |
}; | |
} | |
return { | |
found: true, | |
url: url.replace('RULENAME', ruleName) | |
}; | |
} | |
module.exports = getRuleURI; |