提问人:Saranjith 提问时间:4/21/2021 更新时间:4/21/2021 访问量:2368
如何修复文档警告 Xcode [已关闭]
How to fix documentation warnings Xcode [closed]
问:
例如
Orphaned Doc Comment Violation: A doc comment should be attached to a declaration. (orphaned_doc_comment)
/// Comment here - Warning comes over here
我正在运行 Xcode 12.4。如何解决此警告或禁止显示此警告?
答:
3赞
Renzo Tissoni
4/21/2021
#1
您应该在出现此警告的位置附加代码块,但是在没有太多上下文的情况下判断,您似乎正在使用 SwiftLint,默认情况下启用该规则(阅读此处的文档)。orphaned_doc_comment
切换到普通评论(只是)应该可以解决问题。否则,请在文件中禁用它。//
.swiftlint.yml
评论