-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.prettierignore
More file actions
81 lines (64 loc) · 1.17 KB
/
.prettierignore
File metadata and controls
81 lines (64 loc) · 1.17 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
69
70
71
72
73
74
75
76
77
78
79
80
81
# NX project directories (formatted by their own format targets)
applications/**
packages/**
tools/**
# Dependencies
node_modules
**/node_modules
# Build outputs
dist
**/dist
build
**/build
.next
**/.next
out
**/out
# Nx cache
.nx
**/.nx
# Coverage
coverage
**/coverage
.nyc_output
# Temporary files
tmp
**/tmp
*.tmp
*.log
# Lock files
pnpm-lock.yaml
package-lock.json
yarn.lock
# Git
.git
# IDE
.vscode
.idea
# Generated files
*.min.js
*.min.css
**/routeTree.gen.ts
# Markdown files (handled by markdown-lint with strict emphasis marker rules)
**/*.md
**/*.mdx
CHANGELOG.md
# Compiled files
**/*.d.ts
!**/*.d.ts.map
# Test snapshots (optional - uncomment if you don't want to format them)
# **/__snapshots__
# Specific config files that might have special formatting
# calendars/**/*.ics
# Helm templates with Go templating syntax
infrastructure/helm/**/templates/**
**/helm/**/templates/**
# Shadcn generated components
packages/lexico-components/src/lib/utils
packages/lexico-components/src/components/ui
packages/lexico-components/src/lib
packages/lexico-components/src/hooks
# Code generator template files
tools/code-generator/**/files/**
# Terraform providers
**/.terraform/**