-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.prettierignore
More file actions
68 lines (55 loc) · 1.16 KB
/
.prettierignore
File metadata and controls
68 lines (55 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Prettier ignore patterns for generated / transient artifacts
# Entire temp directory (generated analysis & lint outputs)
temp/
# But keep placeholder file in ai outputs
!temp/ai-outputs/.gitkeep
# Lint / analysis outputs
temp/eslint-results.json
temp/ai-outputs/*
!temp/ai-outputs/.gitkeep
# Logs (already gitignored, list here for clarity)
logs/
logs/ai-conversations/
# Dependency & build outputs
node_modules/
dist/
build/
coverage/
*.tsbuildinfo
.eslintcache
*.lcov
.nyc_output
.coverage
.coverage.*
# Framework / bundler caches
.cache/
.parcel-cache/
.next/
.nuxt/
.vuepress/dist/
.serverless/
.turbo/
# Testing & jest cache
.jest/
# Python caches
__pycache__/
.mypy_cache/
.ruff_cache/
.pytest_cache/
# Sonar / scanner caches
.scannerwork/
.sonarlint/
# Package manager stores
.pnpm-store/
# Prettier internal cache (if enabled)
.prettiercache
# TS execution scratch
ts-node-*/
# Misc generated artifacts we never want to format
*.log
*.tgz
# Backup / cleanup directories
.cleanup-backups/
cleanup-backups/
# Keep the placeholder in ai-outputs even though parent ignored above
!temp/ai-outputs/.gitkeep