-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.prettierignore
More file actions
96 lines (80 loc) · 854 Bytes
/
.prettierignore
File metadata and controls
96 lines (80 loc) · 854 Bytes
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# 依赖文件
node_modules/
package-lock.json
yarn.lock
pnpm-lock.yaml
# 构建输出
dist/
build/
*.min.js
*.min.css
# 版本控制
.git/
.svn/
.hg/
# IDE 和编辑器
.vscode/
.idea/
*.swp
*.swo
*~
# 系统文件
.DS_Store
Thumbs.db
desktop.ini
# 测试覆盖率
coverage/
.nyc_output/
# 日志文件
*.log
logs/
# 临时文件
tmp/
temp/
*.tmp
# 文档文件
*.md
!README.md
CHANGELOG.md
# 配置文件(避免格式化配置文件本身)
.eslintrc.*
.prettierrc.*
.editorconfig
# 第三方库
lib/
vendor/
third_party/
# 压缩文件
*.zip
*.tar.gz
*.rar
*.7z
# 字体文件
*.ttf
*.otf
*.woff
*.woff2
# 图片文件
*.png
*.jpg
*.jpeg
*.gif
*.svg
*.ico
*.webp
# 媒体文件
*.mp4
*.webm
*.ogg
*.mp3
*.wav
# 数据文件
*.json
!package.json
!package-lock.json
!tsconfig.json
!*.config.json
# 特殊文件
LICENSE
CNAME
.nojekyll