UNPKG

ruins

Version:

> [!IMPORTANT] > This is in beta. Not everything is ironed out and some modules might misbehave

14 lines 500 B
import { loadConfig } from "c12"; import { getConfig } from "./getConfig.js"; import { resolve } from "node:path"; export const getLintIssues = async () => { const settings = await getConfig(); // TODO: fix this path stuff const cwdFromNpm = process.cwd().replace(/\/api/, ""); const { config } = await loadConfig({ cwd: resolve(cwdFromNpm, settings.dir), configFile: settings.files.eslintIssues, }); return config; }; //# sourceMappingURL=getLintIssues.js.map