killapp/.editorconfig
“虞渠成” 89a05951f4 build: 配置项目代码分析抑制与开发环境
1.  添加全局代码抑制文件,修复Unity消息方法的静态分析误报
2.  新增Directory.Build.props配置,禁用构建时代码风格强制检查
3.  更新packages配置,添加Antigravity IDE包并升级Visual Scripting版本
4.  优化VSCode调试配置与开发环境设置
5.  添加EditorConfig统一代码格式规则
2026-08-20 09:05:50 +08:00

36 lines
773 B
INI

# Antigravity IDE — Unity Analyzer Configuration
# Auto-generated. Safe to customize.
root = true
[*.cs]
# Formatting
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
# Unity-specific diagnostic suppressions
# IDE0051: Remove unused private members — false positive for Unity messages
dotnet_diagnostic.IDE0051.severity = none
# IDE0044: Add readonly modifier — false positive for serialized fields
dotnet_diagnostic.IDE0044.severity = none
# CS0649: Field is never assigned — false positive for [SerializeField]
dotnet_diagnostic.CS0649.severity = none
[*.shader]
indent_style = tab
[*.uss]
indent_style = space
indent_size = 4
[*.uxml]
indent_style = space
indent_size = 4