UNPKG

@softwareventures/maintain-project

Version:

Automatically create and maintain TypeScript projects with standard settings for Software Ventures Limited

7 lines 404 B
import { insert } from "../fs-stage/fs-stage.js"; import { copyFromTemplate } from "../template/copy.js"; import { projectTemplateId } from "../template/project-template-id.js"; export function writeEsLintIgnore(project) { return async (fsStage) => copyFromTemplate(projectTemplateId(project), ".eslintignore").then(file => insert(fsStage, ".eslintignore", file)); } //# sourceMappingURL=write.js.map