import noExplicitAny from "./no-explicit-any"; import noMisusedAwaitable from "./no-misused-awaitable"; import restrictTemplateExpressions from "./restrict-template-expressions"; import consistentUnionTypeDeclarations from "./consistent-union-type-declarations"; import noRedundantTypeConstituents from "./no-redundant-type-constituents"; import preferReturnSelfType from "./prefer-return-self-type"; import { RuleModule } from "../rule"; import { ParseTreeWalker } from "@zzzen/pyright-internal/dist/analyzer/parseTreeWalker"; const rules: Record> = { noExplicitAny, noMisusedAwaitable, restrictTemplateExpressions, consistentUnionTypeDeclarations, noRedundantTypeConstituents, preferReturnSelfType, }; export default rules;