Files
memecoin-botV2/.pnpm-store/v10/files/e9/8691b2c2f976aa9432c907b9891e9296b7e61335475cf12ab9d1dd3dc56e01f109b037376a33afbf206de0532e0c3fd5984de027ca7f54f6d7d70606abb9cd

11 lines
362 B
Plaintext

/**
* This is a compatibility ruleset that:
* - disables rules from eslint:recommended which are already handled by TypeScript.
* - enables rules that make sense due to TS's typechecking / transpilation.
*/
declare const config: (style: 'glob' | 'minimatch') => {
files: string[];
rules: Record<string, 'error' | 'off' | 'warn'>;
};
export = config;