UNPKG

eslint-plugin-path

Version:

An ESLint plugin for enforcing consistent imports across project. In other words, it helps to replace all relatives import with absolutes dependinng on settings.

10 lines 297 B
import { Literal, Node as ESTreeNode } from "estree"; export type ConfigureSource = Literal; export type Node = ESTreeNode & NodeParentExtension; export interface NodeParentExtension { parent: Node; } export interface ConfigSettings { config?: string; } //# sourceMappingURL=types.d.ts.map