@git.zone/cli
Version:
A comprehensive CLI tool for enhancing and managing local development workflows with gitzone utilities, focusing on project setup, version control, code formatting, and template management.
15 lines (11 loc) • 302 B
text/typescript
import * as plugins from './mod.plugins.js';
import { FormatStats } from './classes.formatstats.js';
export class FormatContext {
private formatStats: FormatStats;
constructor() {
this.formatStats = new FormatStats();
}
getFormatStats(): FormatStats {
return this.formatStats;
}
}