geopro/.clangd

19 lines
540 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# clangd 读取编译数据库,为 IDE / AI 工具提供精确类型上下文(规约 §10.1
CompileFlags:
CompilationDatabase: build/debug
Diagnostics:
UnusedIncludes: Strict
ClangTidy:
Add:
- bugprone-*
- performance-*
- modernize-*
Remove:
- modernize-use-trailing-return-type
# 架构铁律(供人 / AI 参阅,设计 §3
# - core 绝不 include Qt/VTK
# - VTK actor / RenderWindow 仅由 render 层持有view 不 new actor
# - 信号槽连接集中于 *Controller::wireUp()