32c6ae09d6
Prettier config (no semi, single quotes, 100 cols, tailwindcss plugin) scoped via .prettierignore to frontend code only; markdown, docs, CI workflows, website/, and src-tauri/ are excluded. Scripts follow the toolchain split: format/format:check (prettier), format:rust(:check) (cargo fmt), format:all for both.
30 lines
390 B
Plaintext
30 lines
390 B
Plaintext
# Build outputs
|
|
dist/
|
|
build/
|
|
|
|
# Tauri / Rust (handled by cargo fmt)
|
|
src-tauri/
|
|
|
|
# Lock files & generated
|
|
pnpm-lock.yaml
|
|
*.lock
|
|
|
|
# Generated
|
|
src/vite-env.d.ts
|
|
|
|
# Public assets
|
|
public/
|
|
|
|
# Website subpackage (has its own config if needed)
|
|
website/
|
|
|
|
# Markdown & docs (hand-written or tool-generated, keep diffs quiet)
|
|
*.md
|
|
docs/
|
|
|
|
# CI workflows
|
|
.github/
|
|
.gitea/
|
|
|
|
# Tool-managed config
|
|
.claude/ |