mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
66 lines
1.9 KiB
JavaScript
66 lines
1.9 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = void 0;
|
|
|
|
var _utils = require("./utils");
|
|
|
|
var _default = (0, _utils.createRule)({
|
|
name: __filename,
|
|
meta: {
|
|
docs: {
|
|
category: 'Best Practices',
|
|
description: 'Disallow alias methods',
|
|
recommended: 'warn'
|
|
},
|
|
messages: {
|
|
replaceAlias: `Replace {{ replace }}() with its canonical name of {{ canonical }}()`
|
|
},
|
|
fixable: 'code',
|
|
type: 'suggestion',
|
|
schema: []
|
|
},
|
|
defaultOptions: [],
|
|
|
|
create(context) {
|
|
// The Jest methods which have aliases. The canonical name is the first
|
|
// index of each item.
|
|
// todo: replace w/ Map
|
|
const methodNames = [['toHaveBeenCalled', 'toBeCalled'], ['toHaveBeenCalledTimes', 'toBeCalledTimes'], ['toHaveBeenCalledWith', 'toBeCalledWith'], ['toHaveBeenLastCalledWith', 'lastCalledWith'], ['toHaveBeenNthCalledWith', 'nthCalledWith'], ['toHaveReturned', 'toReturn'], ['toHaveReturnedTimes', 'toReturnTimes'], ['toHaveReturnedWith', 'toReturnWith'], ['toHaveLastReturnedWith', 'lastReturnedWith'], ['toHaveNthReturnedWith', 'nthReturnedWith'], ['toThrow', 'toThrowError']];
|
|
return {
|
|
CallExpression(node) {
|
|
if (!(0, _utils.isExpectCall)(node)) {
|
|
return;
|
|
}
|
|
|
|
const _parseExpectCall = (0, _utils.parseExpectCall)(node),
|
|
matcher = _parseExpectCall.matcher;
|
|
|
|
if (!matcher) {
|
|
return;
|
|
} // Check if the method used matches any of ours
|
|
|
|
|
|
const methodItem = methodNames.find(item => item[1] === matcher.name);
|
|
|
|
if (methodItem) {
|
|
context.report({
|
|
messageId: 'replaceAlias',
|
|
data: {
|
|
replace: methodItem[1],
|
|
canonical: methodItem[0]
|
|
},
|
|
node: matcher.node.property,
|
|
fix: fixer => [fixer.replaceText(matcher.node.property, methodItem[0])]
|
|
});
|
|
}
|
|
}
|
|
|
|
};
|
|
}
|
|
|
|
});
|
|
|
|
exports.default = _default; |