@manuth/eslint-plugin-typescript
Version:
A set of personal eslint-rulesets for TypeScript-projects
15 lines (14 loc) • 435 B
text/typescript
import type { Linter } from "eslint";
/**
* Generates an `eslint`-configuration.
*
* @param weak
* A value indicating whether a weak ruleset should be generated.
*
* @param typeChecking
* A value indicating whether a ruleset for a workspace with type-checking should be generated.
*
* @returns
* The configuration.
*/
export declare function GenerateConfiguration(weak: boolean, typeChecking: boolean): Linter.LegacyConfig;