├── .github └── workflows │ ├── main.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── Makefile ├── Package.resolved ├── Package.swift ├── README.md ├── Sources ├── SpellChecker │ └── main.swift └── SpellCheckerCore │ ├── Entity │ ├── WordEntity.swift │ └── YmlEntity.swift │ ├── Extensions │ └── String+extension.swift │ └── Supports │ ├── Commands.swift │ └── WordParser.swift ├── Tests ├── LinuxMain.swift └── SpellCheckerCoreTests │ ├── CommandsTests.swift │ ├── WordFinderTests.swift │ └── XCTestManifests.swift ├── images └── screenshot.png └── swift-keywords.yaml /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/SpellChecker/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/SpellChecker/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/SpellChecker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/SpellChecker/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/SpellChecker/HEAD/Makefile -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/SpellChecker/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/SpellChecker/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/SpellChecker/HEAD/README.md -------------------------------------------------------------------------------- /Sources/SpellChecker/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/SpellChecker/HEAD/Sources/SpellChecker/main.swift -------------------------------------------------------------------------------- /Sources/SpellCheckerCore/Entity/WordEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/SpellChecker/HEAD/Sources/SpellCheckerCore/Entity/WordEntity.swift -------------------------------------------------------------------------------- /Sources/SpellCheckerCore/Entity/YmlEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/SpellChecker/HEAD/Sources/SpellCheckerCore/Entity/YmlEntity.swift -------------------------------------------------------------------------------- /Sources/SpellCheckerCore/Extensions/String+extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/SpellChecker/HEAD/Sources/SpellCheckerCore/Extensions/String+extension.swift -------------------------------------------------------------------------------- /Sources/SpellCheckerCore/Supports/Commands.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/SpellChecker/HEAD/Sources/SpellCheckerCore/Supports/Commands.swift -------------------------------------------------------------------------------- /Sources/SpellCheckerCore/Supports/WordParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/SpellChecker/HEAD/Sources/SpellCheckerCore/Supports/WordParser.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/SpellChecker/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/SpellCheckerCoreTests/CommandsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/SpellChecker/HEAD/Tests/SpellCheckerCoreTests/CommandsTests.swift -------------------------------------------------------------------------------- /Tests/SpellCheckerCoreTests/WordFinderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/SpellChecker/HEAD/Tests/SpellCheckerCoreTests/WordFinderTests.swift -------------------------------------------------------------------------------- /Tests/SpellCheckerCoreTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/SpellChecker/HEAD/Tests/SpellCheckerCoreTests/XCTestManifests.swift -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/SpellChecker/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /swift-keywords.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fromkk/SpellChecker/HEAD/swift-keywords.yaml --------------------------------------------------------------------------------