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.

7 lines (6 loc) 244 B
import fs from 'fs-extra'; import path from 'path'; import { eslintConfig } from '../templates/eslint.config.js'; export function configureESLint(projectPath) { fs.writeFileSync(path.join(projectPath, 'eslint.config.mjs'), eslintConfig); }