├── .gitignore ├── .typokana_ignore ├── Example └── SampleViewModel.swift ├── Images ├── how_to_set_up.png └── screenshot.png ├── LICENSE ├── Makefile ├── Package.resolved ├── Package.swift ├── README.md ├── Sources └── typokana │ ├── Diagnostics.swift │ ├── FileUtil.swift │ ├── IgnoredWordList.swift │ ├── SpellVisitor.swift │ └── main.swift └── Tests ├── LinuxMain.swift └── typokanaTests ├── XCTestManifests.swift └── typokanaTests.swift /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | -------------------------------------------------------------------------------- /.typokana_ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezura/spell-checker-for-swift/HEAD/.typokana_ignore -------------------------------------------------------------------------------- /Example/SampleViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezura/spell-checker-for-swift/HEAD/Example/SampleViewModel.swift -------------------------------------------------------------------------------- /Images/how_to_set_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezura/spell-checker-for-swift/HEAD/Images/how_to_set_up.png -------------------------------------------------------------------------------- /Images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezura/spell-checker-for-swift/HEAD/Images/screenshot.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezura/spell-checker-for-swift/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezura/spell-checker-for-swift/HEAD/Makefile -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezura/spell-checker-for-swift/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezura/spell-checker-for-swift/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezura/spell-checker-for-swift/HEAD/README.md -------------------------------------------------------------------------------- /Sources/typokana/Diagnostics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezura/spell-checker-for-swift/HEAD/Sources/typokana/Diagnostics.swift -------------------------------------------------------------------------------- /Sources/typokana/FileUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezura/spell-checker-for-swift/HEAD/Sources/typokana/FileUtil.swift -------------------------------------------------------------------------------- /Sources/typokana/IgnoredWordList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezura/spell-checker-for-swift/HEAD/Sources/typokana/IgnoredWordList.swift -------------------------------------------------------------------------------- /Sources/typokana/SpellVisitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezura/spell-checker-for-swift/HEAD/Sources/typokana/SpellVisitor.swift -------------------------------------------------------------------------------- /Sources/typokana/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezura/spell-checker-for-swift/HEAD/Sources/typokana/main.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezura/spell-checker-for-swift/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/typokanaTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezura/spell-checker-for-swift/HEAD/Tests/typokanaTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/typokanaTests/typokanaTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezura/spell-checker-for-swift/HEAD/Tests/typokanaTests/typokanaTests.swift --------------------------------------------------------------------------------