import { Command, flags } from "@oclif/command"; export interface LintConfig { rules: Record; } /** * oclif command to lint a spot contract */ export default class Lint extends Command { static description: string; static examples: string[]; static args: { name: string; required: boolean; description: string; hidden: boolean; }[]; static flags: flags.Input; static buildFlags(): flags.Input; run(): Promise; }