@@ -38,12 +38,9 @@ let skipDirPatterns = ["/Sample/", "/Pods/", "FirebaseStorageInternal/Tests/Inte
38
38
39
39
// The following are temporary skips pending working through a first pass of the repo:
40
40
[
41
- " FirebaseAppDistribution " ,
42
- " FirebaseCore/Extension " , // TODO(v9): work through adding this back.
43
- " Firebase/CoreDiagnostics " ,
41
+ " Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb " ,
44
42
" FirebaseDatabase/Sources/third_party/Wrap-leveldb " , // Pending SwiftPM for leveldb.
45
43
" Example " ,
46
- " FirebaseInstallations/Source/Tests/Unit/ " ,
47
44
" Firestore " ,
48
45
" GoogleUtilitiesComponents " ,
49
46
" FirebasePerformance/ProtoSupport/ " ,
@@ -77,13 +74,11 @@ private func checkFile(_ file: String, logger: ErrorLogger, inRepo repoURL: URL)
77
74
// Not a source file, give up and return.
78
75
return
79
76
}
80
- let isPublic = file. range ( of: " /Public/ " ) != nil &&
81
- // TODO: Skip legacy GDTCCTLibrary file that isn't Public and should be moved.
82
- file. range ( of: " GDTCCTLibrary/Public/GDTCOREvent+GDTCCTSupport.h " ) == nil
77
+ let isPublic = file. range ( of: " /Public/ " ) != nil
83
78
let isPrivate = file. range ( of: " /Sources/Private/ " ) != nil ||
84
79
// Delete when FirebaseInstallations fixes directory structure.
85
80
file. range ( of: " Source/Library/Private/FirebaseInstallationsInternal.h " ) != nil ||
86
- file. range ( of: " GDTCORLibrary/Internal/GoogleDataTransportInternal.h " ) != nil
81
+ file. range ( of: " FirebaseCore/Extension " ) != nil
87
82
88
83
// Treat all files with names finishing on "Test" or "Tests" as files with tests.
89
84
let isTestFile = file. contains ( " Test.m " ) || file. contains ( " Tests.m " ) ||
0 commit comments