Add .prettierignore excluding __LOCAL_LLMs/ (and dist/build/generated). Those are mirrored copies refreshed by the chat-history sync; prettier was rewriting them on every commit, fighting the generator and producing permanent diff churn. Also commits the latest refresh snapshot in its native format. Generated with [Devin](https://cli.devin.ai/docs) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
16 lines
499 B
Plaintext
16 lines
499 B
Plaintext
# Build output / deps
|
|
dist/
|
|
build/
|
|
node_modules/
|
|
coverage/
|
|
.next/
|
|
|
|
# Generated design-token outputs (produced by @bytelyst/design-tokens)
|
|
packages/design-tokens/generated/
|
|
|
|
# Mirrored AI chat-history / repo-doc snapshots. These are COPIES of files from
|
|
# other repos, refreshed periodically by the chat-history sync. Prettier must
|
|
# NOT reformat them — doing so causes permanent ping-pong churn (the generator
|
|
# rewrites the source style, prettier rewrites it back on every commit).
|
|
__LOCAL_LLMs/
|