Skip to content

Commit 55c71f5

Browse files
committed
Update README.md
Signed-off-by: Gray Campbell <12163070+graycampbell@users.noreply.github.com>
1 parent 50972bf commit 55c71f5

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# SwiftSyntaxSugar
2+
3+
SwiftSyntaxSugar is a library that provides syntactic sugar and helpful extensions for [SwiftSyntax](https://github.com/swiftlang/swift-syntax). The purpose of this library is to improve the readability and maintainability of code written using SwiftSyntax.
4+
5+
## Installation
6+
7+
To add SwiftSyntaxSugar to a Swift package manifest file:
8+
- Add the SwiftSyntaxSugar package to your package's `dependencies`:
9+
```swift
10+
.package(
11+
url: "https://github.com/fetch-rewards/SwiftSyntaxSugar.git",
12+
from: "<#latest SwiftSyntaxSugar tag#>"
13+
)
14+
```
15+
- Add the SwiftSyntaxSugar product to your target's `dependencies`:
16+
```swift
17+
.product(name: "SwiftSyntaxSugar", package: "SwiftSyntaxSugar")
18+
```
19+
20+
## License
21+
22+
This library is released under the MIT license. See [LICENSE](https://github.com/fetch-rewards/SwiftSyntaxSugar/blob/main/LICENSE) for details.

0 commit comments

Comments
 (0)