@slippy-lint/slippy
Version:
A simple but powerful linter for Solidity
13 lines (12 loc) • 473 B
TypeScript
import * as z from "zod";
import { RuleDefinitionWithConfig } from "./types.js";
declare const Schema: z.ZodDefault<z.ZodObject<{
allow: z.ZodArray<z.ZodObject<{
contracts: z.ZodDefault<z.ZodNumber>;
interfaces: z.ZodDefault<z.ZodNumber>;
libraries: z.ZodDefault<z.ZodNumber>;
}, z.core.$strip>>;
}, z.core.$strip>>;
type Config = z.infer<typeof Schema>;
export declare const OneContractPerFile: RuleDefinitionWithConfig<Config>;
export {};