Files
med-notes/.pnpm-store/v10/files/bf/4284f53097764f002584c8a0a5040351c49dcf2afcb55f30a76ca5164fdef790d099f333f40f5d02db4d42e143b77bf107d9c599cdb3740acd7598cc89e931
2025-05-09 05:30:08 +02:00

52 lines
1.1 KiB
Plaintext

/**
* @fileoverview Rule to flag comparisons to null without a type-checking
* operator.
* @author Ian Christian Myers
*/
"use strict";
//------------------------------------------------------------------------------
// Rule Definition
//------------------------------------------------------------------------------
/** @type {import('../shared/types').Rule} */
module.exports = {
meta: {
type: "suggestion",
docs: {
description:
"Disallow `null` comparisons without type-checking operators",
recommended: false,
url: "https://eslint.org/docs/latest/rules/no-eq-null",
},
schema: [],
messages: {
unexpected: "Use '===' to compare with null.",
},
},
create(context) {
return {
BinaryExpression(node) {
const badOperator =
node.operator === "==" || node.operator === "!=";
if (
(node.right.type === "Literal" &&
node.right.raw === "null" &&
badOperator) ||
(node.left.type === "Literal" &&
node.left.raw === "null" &&
badOperator)
) {
context.report({ node, messageId: "unexpected" });
}
},
};
},
};