Files
iot-dc3/.gitignore
T
pnoker 22f1bf3376 feat(agentic): add i18n, reasoning content display, and streaming perf
- Add agentic i18n keys to en.ts and zh.ts (~70 keys, Token -> 词元 in zh)
- Replace all hardcoded English strings in AgenticAssistant.vue with t() calls
- Capture reasoning_content from SSE delta, render thinking process inline
- Fix streaming performance: skip persistMessages on every delta, only persist on complete
- Add .gitignore entries for playwright-report/ and test-results/
2026-05-15 01:29:12 +08:00

152 lines
1.6 KiB
Plaintext

# System files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Dependencies
node_modules/
.pnp/
.yarn/
.yarn-integrity/
# Build outputs
dist/
dist-ssr/
*.local
out/
# Testing
coverage/
.nyc_output/
# Local env files
.env
.env.local
.env.*.local
.env.development.local
.env.test.local
.env.production.local
# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
*.log
# Editor directories and files
.idea/
.vscode/
*.swp
*.swo
*~
.project
.classpath
.settings/
.loadpath
.factorypath
*.sublime-workspace
*.sublime-project
# OS files
.DS_Store
Thumbs.db
# IDE
*.iml
*.ipr
*.iws
.idea/
# TypeScript
*.tsbuildinfo
# Vue/Vite specific
.vite/
.temp/
.cache/
# Auto-generated files
components.d.ts
auto-imports.d.ts
*.d.ts.map
# Package manager lock files (keep pnpm-lock.yaml, ignore others)
package-lock.json
yarn.lock
# Claude Code local settings (per-developer, should not be committed)
.claude/settings.local.json
# History
.history/
.cache/
# Temporary files
tmp/
temp/
*.tmp
*.temp
# Build artifacts
*.tgz
*.tar.gz
# Docker
.docker/
# SSL/Certificates (if not committed)
*.pem
*.key
*.crt
*.csr
# Database
*.db
*.sqlite
*.sqlite3
# Backup files
*.bak
*.backup
*~
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn
yarn-error.log
yarn-debug.log
.yarn-integrity
# Tauri
src-tauri/target/
src-tauri/Cargo.lock
# Playwright
playwright-report/
test-results/