From 3daa3991634d2039aa21eece467a50fb7d54efd6 Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Sat, 20 Sep 2025 20:26:24 -0400 Subject: [PATCH] fastci: edit --- modules/home/claude-code/commands/fastci.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/modules/home/claude-code/commands/fastci.md b/modules/home/claude-code/commands/fastci.md index e63e011..cae1615 100644 --- a/modules/home/claude-code/commands/fastci.md +++ b/modules/home/claude-code/commands/fastci.md @@ -6,12 +6,12 @@ description: Run fast CI for Haskell projects This command runs a fast CI pipeline for Haskell projects using Cabal. Steps: -1. Run `git add` to add any untracked files added by you **DO NOT COMMIT** changes. -2. Fix all GHC warnings -3. Fix all hlint warnings -4. Run `pre-commit run -a` to autoformat. -5. Ensure it builds: `cabal build all` -6. Ensure tests pass: `cabal test all` +1. Run `git add ` (*NOT* `git add .`) to add any untracked files added by you **DO NOT COMMIT** changes. +2. Fix all hlint warnings +3. Fix all GHC warnings +4. Ensure it builds: `cabal build all` +5. Ensure tests pass: `cabal test all` +6. Run `pre-commit run -a` to autoformat. This will: - Clean up code by fixing compiler and linter warnings