mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-09 06:29:13 +08:00
47 lines
No EOL
2 KiB
Text
47 lines
No EOL
2 KiB
Text
"use strict";
|
|
var __rest = (this && this.__rest) || function (s, e) {
|
|
var t = {};
|
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
t[p] = s[p];
|
|
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
t[p[i]] = s[p[i]];
|
|
}
|
|
return t;
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.RuleCreator = void 0;
|
|
const applyDefault_1 = require("./applyDefault");
|
|
/**
|
|
* Creates reusable function to create rules with default options and docs URLs.
|
|
*
|
|
* @param urlCreator Creates a documentation URL for a given rule name.
|
|
* @returns Function to create a rule with the docs URL format.
|
|
*/
|
|
function RuleCreator(urlCreator) {
|
|
// This function will get much easier to call when this is merged https://github.com/Microsoft/TypeScript/pull/26349
|
|
// TODO - when the above PR lands; add type checking for the context.report `data` property
|
|
return function createNamedRule(_a) {
|
|
var { name, meta } = _a, rule = __rest(_a, ["name", "meta"]);
|
|
return createRule(Object.assign({ meta: Object.assign(Object.assign({}, meta), { docs: Object.assign(Object.assign({}, meta.docs), { url: urlCreator(name) }) }) }, rule));
|
|
};
|
|
}
|
|
exports.RuleCreator = RuleCreator;
|
|
/**
|
|
* Creates a well-typed TSESLint custom ESLint rule without a docs URL.
|
|
*
|
|
* @returns Well-typed TSESLint custom ESLint rule.
|
|
* @remarks It is generally better to provide a docs URL function to RuleCreator.
|
|
*/
|
|
function createRule({ create, defaultOptions, meta, }) {
|
|
return {
|
|
meta,
|
|
create(context) {
|
|
const optionsWithDefault = (0, applyDefault_1.applyDefault)(defaultOptions, context.options);
|
|
return create(context, optionsWithDefault);
|
|
},
|
|
};
|
|
}
|
|
RuleCreator.withoutDocs = createRule;
|
|
//# sourceMappingURL=RuleCreator.js.map |