| 1234567891011121314151617181920212223242526272829 |
- export declare const CONFIG_FILENAME: string;
- export declare const DEFAULT_CONFIG: {
- "rules": {
- "class-name": boolean;
- "comment-format": (boolean | string)[];
- "indent": (boolean | string)[];
- "no-duplicate-variable": boolean;
- "no-eval": boolean;
- "no-internal-module": boolean;
- "no-trailing-whitespace": boolean;
- "no-var-keyword": boolean;
- "one-line": (boolean | string)[];
- "quotemark": (boolean | string)[];
- "semicolon": boolean;
- "triple-equals": (boolean | string)[];
- "typedef-whitespace": (boolean | {
- "call-signature": string;
- "index-signature": string;
- "parameter": string;
- "property-declaration": string;
- "variable-declaration": string;
- })[];
- "variable-name": (boolean | string)[];
- "whitespace": (boolean | string)[];
- };
- };
- export declare function findConfiguration(configFile: string, inputFileLocation: string): any;
- export declare function getRelativePath(directory: string): string;
- export declare function getRulesDirectories(directories: string | string[]): string[];
|