-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
76 lines (65 loc) · 1.16 KB
/
.gitignore
File metadata and controls
76 lines (65 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
69
70
71
72
73
74
75
76
/target
# foobar2000-plugin分支:插件编译产物
foobar2000_plugin/rust_core/target/
foobar2000_plugin/rust_core/Cargo.lock
foobar2000_plugin/build/
foobar2000_plugin/build_*/
foobar2000_plugin/*.dylib
foobar2000_plugin/*.dll
foobar2000_plugin/*.so
foobar2000_plugin/*.component
foobar2000_plugin/compile_commands.json
# 音频文件不上传
/audio
/benchmark_samples
/dr14_t.meter
# DR分析结果文件
*_DR_Analysis.txt
*_BatchDR_Results_*.txt
*DR_Results_*.txt
# 临时日志文件(保留实验日志)
*.log
logs/*.tmp
logs/debug_*
logs/runtime_*
# Python构建文件
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# macOS系统文件
.DS_Store
# IDE文件
.vscode/
.idea/
.claude/
# 临时文件
*.tmp
*.swp
*~
# 备份文件
*.bak
*.orig
*.backup
# 分支备份文件夹
master-branch/
# foobar2000 SDK (在foobar2000-plugin分支中需要包含以支持CI构建)
# SDK-2025-03-07/ # 暂时注释掉,在foobar2000-plugin分支中需要包含
# SDK*/ # 暂时注释掉,在foobar2000-plugin分支中需要包含
coverage/