-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy path.cursorignore
More file actions
169 lines (149 loc) · 4.66 KB
/
.cursorignore
File metadata and controls
169 lines (149 loc) · 4.66 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
# CodeSpirit项目 Cursor AI 忽略文件
# 此文件配置Cursor AI在分析代码时应忽略的文件和目录
# =============================================================================
# 构建输出和编译产物
# =============================================================================
**/bin/
**/obj/
**/[Dd]ebug/
**/[Rr]elease/
**/out/
**/artifacts/
**/publish/
**/.vs/
**/.vscode/
**/BenchmarkDotNet.Artifacts/
# =============================================================================
# 包管理和依赖
# =============================================================================
**/packages/
**/node_modules/
**/*.nupkg
**/*.snupkg
**/*.nuget.props
**/*.nuget.targets
**/paket-files/
# =============================================================================
# 临时文件和缓存
# =============================================================================
**/*.tmp
**/*.temp
**/*.cache
**/*.log
**/*.vspscc
**/*.vssscc
**/TestResults/
**/coverage*.json
**/coverage*.xml
**/coverage*.info
**/*.coverage
**/*.coveragexml
# =============================================================================
# IDE和工具生成的文件
# =============================================================================
**/*.suo
**/*.user
**/*.userosscache
**/*.sln.docstates
**/*.userprefs
**/*.DotSettings.user
**/_ReSharper*/
**/*.psess
**/*.vsp
**/*.vspx
# =============================================================================
# 数据库文件
# =============================================================================
**/*.mdf
**/*.ldf
**/*.ndf
**/healthchecksdb
# =============================================================================
# 文档和资源文件(但保留重要文档)
# =============================================================================
/Res/
**/*.png
**/*.jpg
**/*.jpeg
**/*.gif
**/*.bmp
**/*.ico
**/*.pdf
# 保留重要的文档目录,但忽略其中的图片
!/Docs/
/Docs/**/*.png
/Docs/**/*.jpg
/Docs/**/*.jpeg
/Docs/**/*.gif
# =============================================================================
# 迁移文件(数据库迁移通常不需要AI分析)
# =============================================================================
**/Migrations/
**/migrations/
# =============================================================================
# 测试相关(保留测试代码但忽略测试结果)
# =============================================================================
**/TestResults/
**/*.trx
**/nunit-*.xml
**/TestResult.xml
**/*test-results.xml
# =============================================================================
# DevOps和部署相关
# =============================================================================
/k8s/
**/*.yaml
**/*.yml
**/docker-compose*
**/.dockerignore
# =============================================================================
# 前端构建产物(如果有)
# =============================================================================
**/wwwroot/lib/
**/wwwroot/dist/
**/wwwroot/build/
# =============================================================================
# 配置文件中的敏感信息
# =============================================================================
**/appsettings.Production.json
**/appsettings.Staging.json
**/*.secrets.json
**/*.local.json
# =============================================================================
# 自动生成的代码和模板
# =============================================================================
**/Generated*/
**/generated/
**/Templates/Generated/
# **/*Designer.cs
**/*.g.cs
**/*.g.i.cs
# =============================================================================
# 大型或重复性文件
# =============================================================================
# Entity Framework快照文件(通常很大且自动生成)
**/*ModelSnapshot.cs
# 种子数据文件(通常包含大量测试数据)
**/Seeds/
**/Seed/
**/*Seed.cs
# =============================================================================
# 特定于项目的忽略规则
# =============================================================================
# Aspire应用宿主的某些配置
/Src/CodeSpirit.AppHost/Properties/
# 存储目录
**/storage/
# 许可证和说明文件
/LICENSE
# =============================================================================
# Git相关
# =============================================================================
# /.git/
**/.gitignore
**/.gitattributes
# =============================================================================
# 其他工具文件
# =============================================================================
**/.editorconfig
**/.cursorrules