UNPKG

@slippy-lint/slippy

Version:

A simple but powerful linter for Solidity

10 lines (9 loc) 286 B
import * as z from "zod"; import { RuleDefinition } from "./types.js"; declare const ConfigSchema: z.ZodDefault<z.ZodEnum<{ never: "never"; always: "always"; }>>; type Config = z.infer<typeof ConfigSchema>; export declare const ExplicitTypes: RuleDefinition<Config>; export {};