chore: add AI tooling config and conventional commits convention (JDWLABS-21)#8
Conversation
Code reviewFound 3 issues:
Line 13 in a76f312
Lines 31 to 57 in a76f312
apps/.github/pull_request_template.md Lines 1 to 24 in a76f312 🤖 Generated with Claude Code - If this code review was useful, please react with 👍. Otherwise, react with 👎. |
|
View your CI Pipeline Execution ↗ for commit 86a663a
☁️ Nx Cloud last updated this comment at |
1 similar comment
|
View your CI Pipeline Execution ↗ for commit 86a663a
☁️ Nx Cloud last updated this comment at |
There was a problem hiding this comment.
Nx Cloud is proposing a fix for your failed CI:
We ran nx format to fix the Prettier formatting failure on .claude/settings.json, which was introduced by this PR but not formatted before being committed. Prettier collapsed the short deny array onto a single line, which is the only change needed to satisfy nx format:check.
Tip
✅ We verified this fix by re-running nx-cloud record -- nx format:check.
diff --git a/.claude/settings.json b/.claude/settings.json
index 7a0bbf3..6023809 100644
--- a/.claude/settings.json
+++ b/.claude/settings.json
@@ -12,9 +12,6 @@
"Bash(git add *)",
"Bash(git commit*)"
],
- "deny": [
- "Bash(git push*)",
- "Bash(rm -rf *)"
- ]
+ "deny": ["Bash(git push*)", "Bash(rm -rf *)"]
}
}
Or Apply changes locally with:
npx nx-cloud apply-locally SxIm-YONs
Apply fix locally with your editor ↗ View interactive diff ↗
🎓 Learn more about Self-Healing CI on nx.dev
Prettier collapses the deny array to a single line. Unblocks the CI Run Format Check step. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
…ooling # Conflicts: # CLAUDE.md
Summary
Jira
JDWLABS-21 — part of JDWLABS-14 (Org Health & Governance)
Test plan
apps/angular/,apps/go/,apps/springboot/)git pushandrm -rf🤖 Generated with Claude Code