mirror of
https://github.com/cline/cline.git
synced 2026-09-21 05:10:09 +08:00
Omnibus squash of the 10 oldest SDK-migration commits (authored 2026-05-27 through 2026-06-02), collapsed during the 2026-06-09 rebase onto origin/main. Squashed commits: - sdk migration: squashed pre-2026-05-27 work - sdk migration: squashed 06-05-2026 -- instead of listHistory, use host.get(sessionId) instead - updat gitignore - fix xai provider - fix(vscode): forward Bedrock region + AWS auth to the SDK gateway - fix(vscode): keep in-progress MCP OAuth flow across reconnects - fix(vscode): wire auto compact into SDK sessions (#11197) - fix(vscode): compact Codex OAuth before input cap (#11194) - fix unauthed user flow - fix(llms): strip Cerebras reasoning history (#11214)
12 lines
342 B
Plaintext
12 lines
342 B
Plaintext
if ! command -v gitleaks >/dev/null 2>&1; then
|
|
echo "gitleaks is required for the pre-commit secret scan."
|
|
echo "Install it with: brew install gitleaks"
|
|
echo "Other install options: https://github.com/gitleaks/gitleaks#installing"
|
|
exit 1
|
|
fi
|
|
|
|
gitleaks git --pre-commit --redact --staged --verbose || exit 1
|
|
|
|
cd apps/vscode && lint-staged
|
|
|