Skip to content

Commit 0c044f7

Browse files
committed
Sort providing macros collection alphabetically
1 parent 18fe285 commit 0c044f7

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

Examples/Sources/MacroExamples/Implementation/Plugin.swift

Lines changed: 15 additions & 15 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+
EquatableExtensionMacro.self,
29+
FontLiteralMacro.self,
3830
FuncUniqueMacro.self,
39-
PeerValueWithSuffixNameMacro.self,
4031
MemberDeprecatedMacro.self,
41-
EquatableExtensionMacro.self,
32+
MetaEnumMacro.self,
33+
NewTypeMacro.self,
34+
ObservableMacro.self,
35+
ObservablePropertyMacro.self,
36+
OptionSetMacro.self,
37+
PeerValueWithSuffixNameMacro.self,
38+
StringifyMacro.self,
39+
URLMacro.self,
40+
WarningMacro.self,
41+
WrapStoredPropertiesMacro.self,
4242
]
4343
}
4444
#endif

0 commit comments

Comments
 (0)