github-pages-deploy-action/node_modules/eslint-plugin-jest/lib/rules/no-truthy-falsy.js
2020-03-06 22:45:40 -05:00

57 lines
1.2 KiB
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _utils = require("./utils");
// todo: refactor into "ban-matchers"
var _default = (0, _utils.createRule)({
name: __filename,
meta: {
docs: {
category: 'Best Practices',
description: 'Disallow using `toBeTruthy()` & `toBeFalsy()`',
recommended: false
},
messages: {
avoidMessage: 'Avoid {{ methodName }}'
},
type: 'suggestion',
schema: []
},
defaultOptions: [],
create(context) {
return {
CallExpression(node) {
if (!(0, _utils.isExpectCall)(node)) {
return;
}
const _parseExpectCall = (0, _utils.parseExpectCall)(node),
matcher = _parseExpectCall.matcher;
if (!matcher || !['toBeTruthy', 'toBeFalsy'].includes(matcher.name)) {
return;
}
context.report({
data: {
methodName: matcher.name
},
// todo: rename to 'matcherName'
messageId: 'avoidMessage',
// todo: rename to 'avoidMatcher'
node: matcher.node.property
});
}
};
}
});
exports.default = _default;