2024-03-09 12:48:19 +03:00
|
|
|
import { ESLintUtils, TSESTree } from '@typescript-eslint/experimental-utils';
|
2024-04-17 18:06:37 +03:00
|
|
|
import ts from 'typescript';
|
2024-03-09 12:48:19 +03:00
|
|
|
|
|
|
|
export const RULE_NAME = 'explicit-boolean-predicates-in-if';
|
|
|
|
|
2024-04-17 18:06:37 +03:00
|
|
|
const isBooleanType = (type: ts.Type) => {
|
|
|
|
// check if boolean flag(s) is set on the type (e.g. boolean, true, false, etc.)
|
|
|
|
return type && (type.flags & ts.TypeFlags.BooleanLike) !== 0;
|
|
|
|
};
|
|
|
|
|
2024-03-09 12:48:19 +03:00
|
|
|
export const rule = ESLintUtils.RuleCreator(() => __filename)({
|
|
|
|
name: RULE_NAME,
|
|
|
|
meta: {
|
|
|
|
type: 'suggestion',
|
|
|
|
docs: {
|
|
|
|
description: 'Enforce explicit boolean predicates in if statements',
|
|
|
|
recommended: 'warn',
|
|
|
|
},
|
|
|
|
fixable: 'code',
|
|
|
|
schema: [],
|
|
|
|
messages: {
|
|
|
|
nonExplicitPredicate:
|
|
|
|
'Use an explicit boolean predicate in if statements.',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
defaultOptions: [],
|
|
|
|
create: (context) => {
|
|
|
|
const parserServices = ESLintUtils.getParserServices(context);
|
|
|
|
const typeChecker = parserServices.program.getTypeChecker();
|
|
|
|
|
|
|
|
return {
|
|
|
|
IfStatement: (node: TSESTree.IfStatement) => {
|
|
|
|
const tsNode = parserServices.esTreeNodeToTSNodeMap.get(node.test);
|
|
|
|
const type = typeChecker.getTypeAtLocation(tsNode);
|
|
|
|
|
2024-04-17 18:06:37 +03:00
|
|
|
if (!isBooleanType(type)) {
|
2024-03-09 12:48:19 +03:00
|
|
|
const { test } = node;
|
|
|
|
context.report({
|
|
|
|
node: test,
|
|
|
|
messageId: 'nonExplicitPredicate',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
export default rule;
|