v5.2.0: undo/redo, version history, embedded AI assistant, mobile builder & more (#3205)

This commit is contained in:
Amruth Pillai
2026-07-04 14:57:25 +02:00
committed by GitHub
parent 09bc6ec521
commit 57e9c8c487
181 changed files with 46794 additions and 11348 deletions
+12
View File
@@ -4,6 +4,18 @@
pre-commit:
parallel: true
jobs:
- name: check merge conflict markers
glob: "*"
exclude:
- "*.md"
- "*.mdx"
run: |
matches=$(grep -nEI '<{7} |>{7} |^={7}$' {staged_files} || true)
if [ -n "$matches" ]; then
echo "$matches"
echo "Error: merge conflict markers found in staged files"
exit 1
fi
- name: lint and format
glob: "*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}"
run: pnpm biome check --write --unsafe --no-errors-on-unmatched --files-ignore-unknown=true {staged_files}