We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ede158 commit 535a6e3Copy full SHA for 535a6e3
Dangerfile.swift
@@ -432,6 +432,9 @@ class CodeUsageDetector {
432
let lineNumber = index + 1
433
if keyword.shouldComment {
434
markdown(String(format: message, file, lineNumber))
435
+ } else if keyword == .deferred {
436
+ // We cannot check if it's on a line added, so we only warn for deferred here
437
+ warn(String(format: message, file, lineNumber))
438
} else {
439
fail(String(format: message, file, lineNumber))
440
}
0 commit comments