Skip to content

Commit 067236d

Browse files
committed
Sort providing macros collection alphabetically
1 parent 21e75e1 commit 067236d

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

Examples/Sources/MacroExamples/Implementation/Plugin.swift

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -17,28 +17,28 @@ import SwiftSyntaxMacros
1717
@main
1818
struct MyPlugin: CompilerPlugin {
1919
let providingMacros: [Macro.Type] = [
20-
StringifyMacro.self,
20+
AddAsyncMacro.self,
2121
AddBlocker.self,
22-
WarningMacro.self,
23-
FontLiteralMacro.self,
24-
WrapStoredPropertiesMacro.self,
25-
DictionaryStorageMacro.self,
26-
DictionaryStoragePropertyMacro.self,
27-
ObservableMacro.self,
28-
ObservablePropertyMacro.self,
2922
AddCompletionHandlerMacro.self,
30-
AddAsyncMacro.self,
3123
CaseDetectionMacro.self,
32-
MetaEnumMacro.self,
3324
CodableKey.self,
3425
CustomCodable.self,
35-
OptionSetMacro.self,
36-
NewTypeMacro.self,
37-
URLMacro.self,
26+
DictionaryStorageMacro.self,
27+
DictionaryStoragePropertyMacro.self,
28+
FontLiteralMacro.self,
3829
FuncUniqueMacro.self,
39-
PeerValueWithSuffixNameMacro.self,
4030
MemberDeprecatedMacro.self,
31+
MetaEnumMacro.self,
32+
NewTypeMacro.self,
33+
ObservableMacro.self,
34+
ObservablePropertyMacro.self,
35+
OptionSetMacro.self,
36+
PeerValueWithSuffixNameMacro.self,
4137
SendableExtensionMacro.self,
38+
StringifyMacro.self,
39+
URLMacro.self,
40+
WarningMacro.self,
41+
WrapStoredPropertiesMacro.self,
4242
]
4343
}
4444
#endif

0 commit comments

Comments
 (0)