Closed JohnEstropia closed 4 years ago
PropertyWrappers may be nested in types like this:
enum Encoded { @propertyWrapper struct Json<V> { // ... } } class Person { @Encoded.Json var firstName: String = "" // this line }
Running swiftformat breaks the qualified name:
swiftformat
@Encoded .Json var firstName: String = "" // note space before .Json
This compiles normally, but would prefer the qualified name intact.
@JohnEstropia fixed in 0.44.4. Thanks for reporting!
PropertyWrappers may be nested in types like this:
Running
swiftformat
breaks the qualified name:This compiles normally, but would prefer the qualified name intact.