UNPKG

zenith-gen

Version:

A CLI tool designed to streamline the creation of projects within the Zenith Inova ecosystem, providing optimized configurations and modern development tools.

8 lines (6 loc) 263 B
import fs from 'fs-extra'; import path from 'path'; import { eslintConfig } from '../templates/eslint.config'; export function configureESLint(projectPath: string): void { fs.writeFileSync(path.join(projectPath, 'eslint.config.mjs'), eslintConfig); }