12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- "use strict";
- module.exports = {
- meta: {
- type: "suggestion",
- docs: {
- description: "disallow negated conditions",
- category: "Stylistic Issues",
- recommended: false,
- url: "https://eslint.org/docs/rules/no-negated-condition"
- },
- schema: []
- },
- create(context) {
-
- function hasElseWithoutCondition(node) {
- return node.alternate && node.alternate.type !== "IfStatement";
- }
-
- function isNegatedUnaryExpression(test) {
- return test.type === "UnaryExpression" && test.operator === "!";
- }
-
- function isNegatedBinaryExpression(test) {
- return test.type === "BinaryExpression" &&
- (test.operator === "!=" || test.operator === "!==");
- }
-
- function isNegatedIf(node) {
- return isNegatedUnaryExpression(node.test) || isNegatedBinaryExpression(node.test);
- }
- return {
- IfStatement(node) {
- if (!hasElseWithoutCondition(node)) {
- return;
- }
- if (isNegatedIf(node)) {
- context.report({ node, message: "Unexpected negated condition." });
- }
- },
- ConditionalExpression(node) {
- if (isNegatedIf(node)) {
- context.report({ node, message: "Unexpected negated condition." });
- }
- }
- };
- }
- };
|