-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.prettierignore
56 lines (42 loc) · 941 Bytes
/
.prettierignore
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
# Ignore node_modules directory (third-party dependencies)
node_modules
.npm
npm-debug.log
# Ignore build directories
dist/**
build/**
# Ignore output from Next.js
.next/**
# Ignore TypeScript declaration files
*.d.ts
# Ignore environment files
.env
.env.local
.env.production
.env.*.local
# Ignore lock files (if you don't want Prettier to format them)
package-lock.json
yarn.lock
# Ignore coverage reports
coverage
# Ignore generated files from Prisma or other ORMs
prisma/generated
# Ignore public assets or static files
public
# Ignore logs
*.log
# Ignore markdown files (if you don't want them formatted)
*.md
# Ignore JSON files (optional, if you don't want them formatted)
*.json
# Ignore all files in a specific directory (e.g., assets)
assets/
# Ignore specific files (e.g., a custom configuration file)
my-custom-config.js
# Ignore specific file extensions (e.g., images, videos)
*.png
*.jpg
*.jpeg
*.gif
*.mp4
*.svg