ezura / spell-checker-for-swift

This command line tool can check spelling and show proposed correction.
MIT License
74 stars 9 forks source link

Follow Swift5.1 syntax #12

Closed ezura closed 4 years ago

ezura commented 4 years ago

What

Resolve issue https://github.com/ezura/spell-checker-for-swift/issues/10

Why

When typokana reads new syntax of Swift5.1, a decode error occurs.

enum Sample {
    case e(Int = 1)
}
The operation couldn’t be completed. (SwiftSyntax.TokenKind.DecodeError error 0.)

How