summaryrefslogtreecommitdiff
path: root/src/index.ts
diff options
context:
space:
mode:
authorLeo Goetz <dev@leogtz.de>2026-05-24 06:50:57 +0200
committerLeo Goetz <dev@leogtz.de>2026-05-24 06:50:57 +0200
commitca8537af0ab596fddd8d72e6630f278326ef5360 (patch)
tree170d9f82b28f292f40785e33b3981121b6793c3c /src/index.ts
parentd05bfaf95fb666fea02c8aceae3ce02c9e315d3d (diff)
feat: added fix functionality
Diffstat (limited to 'src/index.ts')
-rw-r--r--src/index.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/index.ts b/src/index.ts
index 3a6b348..0f81fdb 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -2,10 +2,12 @@
import { Command } from "commander";
import { check } from "./commands/check.js";
import { config } from "./commands/config.js";
+import { fix } from "./commands/fix.js";
const program = new Command();
check(program);
+fix(program);
config(program);
program.parse(process.argv);