UNPKG

eclint

Version:

Validate or fix code that doesn't adhere to EditorConfig settings or infer settings from existing code.

13 lines (12 loc) 319 B
declare class EditorConfigError extends Error { columnNumber?: number; fileName?: string; lineNumber?: number; message: string; rule: string; source: string; name: string; constructor(message: string, ...args: any[]); inspect: () => string; } export = EditorConfigError;