Add .prettierignore for vendored minified JS (closes #185)

script/fmt ran prettier over static/js/*.js, which rewrote the vendored
minified static/js/alpine.min.js. A root .prettierignore with *.min.js
excludes vendored bundles: make fmt on a clean tree now yields no changes
and alpine.min.js stays byte-identical, while first-party JS still formats.

Model: opus-4-8
This commit was merged in pull request #195.
This commit is contained in:
2026-09-22 10:00:50 +02:00
parent 8597b70954
commit 1d38585431
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
# Vendored, minified third-party bundles must never be reformatted.
*.min.js