npm-package-json-lint
Version:
Configurable linter for package.json files.
9 lines (8 loc) • 361 B
TypeScript
import { n as Severity, t as LintIssue } from "./lint-issue.js";
import { PackageJson } from "type-fest";
//#region src/rules/man-type.d.ts
declare const ruleType = RuleType.Standard;
declare const lint: (packageJsonData: PackageJson | any, severity: Severity) => LintIssue | null;
//#endregion
export { lint, ruleType };
//# sourceMappingURL=man-type.d.ts.map