├── .config └── dotnet-tools.json ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── ci.yml │ └── publish.yml ├── .gitignore ├── .gitmodules ├── TestHarness ├── CheckTest.cs ├── CheckWordTest.cs ├── LoadTest.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── SimpleIssueScenarios.cs ├── SuggestTest.cs ├── SuggestWordTest.cs ├── TestHarness.csproj └── TestHarness.v3.ncrunchproject ├── WeCantSpell.Hunspell.Benchmarks.NHunspell ├── App.config ├── Program.cs ├── Suites │ ├── CheckEnUsSuite.cs │ └── SuggestEnUsSuite.cs ├── WeCantSpell.Hunspell.Benchmarks.NHunspell.csproj └── WeCantSpell.Hunspell.Benchmarks.NHunspell.v3.ncrunchproject ├── WeCantSpell.Hunspell.Benchmarks ├── Helpers │ ├── CategorizedWordData.cs │ ├── DataFilePaths.cs │ └── EnUsTestData.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Suites │ ├── CheckEnUsSuite.cs │ └── SuggestEnUsSuite.cs ├── WeCantSpell.Hunspell.Benchmarks.csproj ├── WeCantSpell.Hunspell.Benchmarks.net48.v3.ncrunchproject ├── WeCantSpell.Hunspell.Benchmarks.net9.0.v3.ncrunchproject └── WeCantSpell.Hunspell.Benchmarks.v3.ncrunchproject ├── WeCantSpell.Hunspell.Tests ├── AffixReaderTests.cs ├── ArrayBuilderTests.cs ├── CharacterConditionTests.cs ├── DictionaryLoader.cs ├── EnUsWordsTests.cs ├── FlagSetTests.cs ├── Helpers.cs ├── HunspellTests.cs ├── Issue106Tests.cs ├── Issue86Tests.cs ├── LineReaderTests.cs ├── OptionsTests.cs ├── OutputConversionTests.cs ├── PhonetAuTests.cs ├── StringBuilderSpanTests.cs ├── TestTheories.cs ├── TextDictionaryTests.cs ├── WeCantSpell.Hunspell.Tests.csproj ├── WordListReaderTests.cs ├── WordListTests.Add.cs ├── WordListTests.Builder.cs ├── WordListTests.Remove.cs ├── WordListTests.Suggest.cs ├── WordListTests.cs └── files │ ├── af_am_comments.aff │ ├── hun_cover.aff │ ├── hun_cover.dic │ ├── hun_cover.good │ ├── hun_cover.sug │ └── hun_cover.wrong ├── WeCantSpell.Hunspell.sln ├── WeCantSpell.Hunspell.v3.ncrunchsolution ├── WeCantSpell.Hunspell ├── AffixCollection.cs ├── AffixConfig.Builder.cs ├── AffixConfig.cs ├── AffixConfigOptions.cs ├── AffixEntry.cs ├── AffixEntryOptions.cs ├── AffixGroup.cs ├── AffixReader.AffixParametersParser.cs ├── AffixReader.cs ├── AliasCollection.cs ├── ArrayBuilder.cs ├── BreakSet.cs ├── CandidateStack.cs ├── CapitalizationType.cs ├── CharacterCondition.cs ├── CharacterConditionGroup.cs ├── CharacterSet.cs ├── CollectionsEx.cs ├── CompoundRule.cs ├── CompoundRuleSet.cs ├── Delegates.cs ├── EncodingEx.cs ├── EnumEx.cs ├── ExceptionEx.cs ├── FlagParser.cs ├── FlagParsingMode.cs ├── FlagSet.cs ├── FlagValue.cs ├── HashCode.cs ├── IncrementalWordList.cs ├── IntEx.cs ├── LineReader.cs ├── MapEntry.cs ├── MapTable.cs ├── MemoryEx.cs ├── MorphSet.cs ├── MorphSetParser.cs ├── MorphologicalTags.cs ├── MultiReplacementEntry.cs ├── MultiReplacementTable.cs ├── OperationLimiters.cs ├── PatternEntry.cs ├── PatternSet.cs ├── PhoneTable.cs ├── PhoneticEntry.cs ├── QueryOptions.cs ├── ReplacementEntry.cs ├── ReplacementEntryType.cs ├── SimulatedCString.cs ├── SingleReplacement.cs ├── SingleReplacementSet.cs ├── SpanSeparatorSplitEnumerator.cs ├── SpecialFlags.cs ├── SpellCheckResult.cs ├── SpellCheckResultType.cs ├── StreamEx.cs ├── StringBuilderSpan.cs ├── StringEx.HashCode.cs ├── StringEx.HunspellTextFunctions.cs ├── StringEx.cs ├── TextDictionary.cs ├── WeCantSpell.Hunspell.csproj ├── WordEntry.cs ├── WordEntryDetail.cs ├── WordEntryOptions.cs ├── WordList.Builder.cs ├── WordList.Query.cs ├── WordList.QueryCheck.cs ├── WordList.QuerySuggest.cs ├── WordList.cs └── WordListReader.cs ├── artifacts ├── .gitignore └── bench │ └── results │ ├── WeCantSpell.Hunspell.Benchmarks.NHunspell.Suites.CheckEnUsSuite-report-github.md │ ├── WeCantSpell.Hunspell.Benchmarks.NHunspell.Suites.CheckEnUsSuite-report.csv │ ├── WeCantSpell.Hunspell.Benchmarks.NHunspell.Suites.CheckEnUsSuite-report.html │ ├── WeCantSpell.Hunspell.Benchmarks.NHunspell.Suites.SuggestEnUsSuite-report-github.md │ ├── WeCantSpell.Hunspell.Benchmarks.NHunspell.Suites.SuggestEnUsSuite-report.csv │ ├── WeCantSpell.Hunspell.Benchmarks.NHunspell.Suites.SuggestEnUsSuite-report.html │ ├── WeCantSpell.Hunspell.Benchmarks.Suites.CheckEnUsSuite-report-github.md │ ├── WeCantSpell.Hunspell.Benchmarks.Suites.CheckEnUsSuite-report.csv │ ├── WeCantSpell.Hunspell.Benchmarks.Suites.CheckEnUsSuite-report.html │ ├── WeCantSpell.Hunspell.Benchmarks.Suites.SuggestEnUsSuite-report-github.md │ ├── WeCantSpell.Hunspell.Benchmarks.Suites.SuggestEnUsSuite-report.csv │ └── WeCantSpell.Hunspell.Benchmarks.Suites.SuggestEnUsSuite-report.html ├── changelog.md ├── contributing.md ├── global.json ├── icon.png ├── license.txt ├── readme.md └── temp-data └── readme.md /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/.gitmodules -------------------------------------------------------------------------------- /TestHarness/CheckTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/TestHarness/CheckTest.cs -------------------------------------------------------------------------------- /TestHarness/CheckWordTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/TestHarness/CheckWordTest.cs -------------------------------------------------------------------------------- /TestHarness/LoadTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/TestHarness/LoadTest.cs -------------------------------------------------------------------------------- /TestHarness/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/TestHarness/Program.cs -------------------------------------------------------------------------------- /TestHarness/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/TestHarness/Properties/launchSettings.json -------------------------------------------------------------------------------- /TestHarness/SimpleIssueScenarios.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/TestHarness/SimpleIssueScenarios.cs -------------------------------------------------------------------------------- /TestHarness/SuggestTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/TestHarness/SuggestTest.cs -------------------------------------------------------------------------------- /TestHarness/SuggestWordTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/TestHarness/SuggestWordTest.cs -------------------------------------------------------------------------------- /TestHarness/TestHarness.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/TestHarness/TestHarness.csproj -------------------------------------------------------------------------------- /TestHarness/TestHarness.v3.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/TestHarness/TestHarness.v3.ncrunchproject -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Benchmarks.NHunspell/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Benchmarks.NHunspell/App.config -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Benchmarks.NHunspell/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Benchmarks.NHunspell/Program.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Benchmarks.NHunspell/Suites/CheckEnUsSuite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Benchmarks.NHunspell/Suites/CheckEnUsSuite.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Benchmarks.NHunspell/Suites/SuggestEnUsSuite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Benchmarks.NHunspell/Suites/SuggestEnUsSuite.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Benchmarks.NHunspell/WeCantSpell.Hunspell.Benchmarks.NHunspell.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Benchmarks.NHunspell/WeCantSpell.Hunspell.Benchmarks.NHunspell.csproj -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Benchmarks.NHunspell/WeCantSpell.Hunspell.Benchmarks.NHunspell.v3.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Benchmarks.NHunspell/WeCantSpell.Hunspell.Benchmarks.NHunspell.v3.ncrunchproject -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Benchmarks/Helpers/CategorizedWordData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Benchmarks/Helpers/CategorizedWordData.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Benchmarks/Helpers/DataFilePaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Benchmarks/Helpers/DataFilePaths.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Benchmarks/Helpers/EnUsTestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Benchmarks/Helpers/EnUsTestData.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Benchmarks/Program.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Benchmarks/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Benchmarks/Properties/launchSettings.json -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Benchmarks/Suites/CheckEnUsSuite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Benchmarks/Suites/CheckEnUsSuite.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Benchmarks/Suites/SuggestEnUsSuite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Benchmarks/Suites/SuggestEnUsSuite.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Benchmarks/WeCantSpell.Hunspell.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Benchmarks/WeCantSpell.Hunspell.Benchmarks.csproj -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Benchmarks/WeCantSpell.Hunspell.Benchmarks.net48.v3.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Benchmarks/WeCantSpell.Hunspell.Benchmarks.net48.v3.ncrunchproject -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Benchmarks/WeCantSpell.Hunspell.Benchmarks.net9.0.v3.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Benchmarks/WeCantSpell.Hunspell.Benchmarks.net9.0.v3.ncrunchproject -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Benchmarks/WeCantSpell.Hunspell.Benchmarks.v3.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Benchmarks/WeCantSpell.Hunspell.Benchmarks.v3.ncrunchproject -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/AffixReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/AffixReaderTests.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/ArrayBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/ArrayBuilderTests.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/CharacterConditionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/CharacterConditionTests.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/DictionaryLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/DictionaryLoader.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/EnUsWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/EnUsWordsTests.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/FlagSetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/FlagSetTests.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/Helpers.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/HunspellTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/HunspellTests.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/Issue106Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/Issue106Tests.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/Issue86Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/Issue86Tests.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/LineReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/LineReaderTests.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/OptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/OptionsTests.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/OutputConversionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/OutputConversionTests.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/PhonetAuTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/PhonetAuTests.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/StringBuilderSpanTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/StringBuilderSpanTests.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/TestTheories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/TestTheories.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/TextDictionaryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/TextDictionaryTests.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/WeCantSpell.Hunspell.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/WeCantSpell.Hunspell.Tests.csproj -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/WordListReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/WordListReaderTests.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/WordListTests.Add.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/WordListTests.Add.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/WordListTests.Builder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/WordListTests.Builder.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/WordListTests.Remove.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/WordListTests.Remove.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/WordListTests.Suggest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/WordListTests.Suggest.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/WordListTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/WordListTests.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/files/af_am_comments.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/files/af_am_comments.aff -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/files/hun_cover.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/files/hun_cover.aff -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/files/hun_cover.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/files/hun_cover.dic -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/files/hun_cover.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/files/hun_cover.good -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/files/hun_cover.sug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/files/hun_cover.sug -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.Tests/files/hun_cover.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.Tests/files/hun_cover.wrong -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.sln -------------------------------------------------------------------------------- /WeCantSpell.Hunspell.v3.ncrunchsolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell.v3.ncrunchsolution -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/AffixCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/AffixCollection.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/AffixConfig.Builder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/AffixConfig.Builder.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/AffixConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/AffixConfig.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/AffixConfigOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/AffixConfigOptions.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/AffixEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/AffixEntry.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/AffixEntryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/AffixEntryOptions.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/AffixGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/AffixGroup.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/AffixReader.AffixParametersParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/AffixReader.AffixParametersParser.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/AffixReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/AffixReader.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/AliasCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/AliasCollection.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/ArrayBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/ArrayBuilder.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/BreakSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/BreakSet.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/CandidateStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/CandidateStack.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/CapitalizationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/CapitalizationType.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/CharacterCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/CharacterCondition.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/CharacterConditionGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/CharacterConditionGroup.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/CharacterSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/CharacterSet.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/CollectionsEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/CollectionsEx.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/CompoundRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/CompoundRule.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/CompoundRuleSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/CompoundRuleSet.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/Delegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/Delegates.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/EncodingEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/EncodingEx.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/EnumEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/EnumEx.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/ExceptionEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/ExceptionEx.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/FlagParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/FlagParser.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/FlagParsingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/FlagParsingMode.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/FlagSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/FlagSet.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/FlagValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/FlagValue.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/HashCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/HashCode.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/IncrementalWordList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/IncrementalWordList.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/IntEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/IntEx.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/LineReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/LineReader.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/MapEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/MapEntry.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/MapTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/MapTable.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/MemoryEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/MemoryEx.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/MorphSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/MorphSet.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/MorphSetParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/MorphSetParser.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/MorphologicalTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/MorphologicalTags.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/MultiReplacementEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/MultiReplacementEntry.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/MultiReplacementTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/MultiReplacementTable.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/OperationLimiters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/OperationLimiters.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/PatternEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/PatternEntry.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/PatternSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/PatternSet.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/PhoneTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/PhoneTable.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/PhoneticEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/PhoneticEntry.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/QueryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/QueryOptions.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/ReplacementEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/ReplacementEntry.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/ReplacementEntryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/ReplacementEntryType.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/SimulatedCString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/SimulatedCString.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/SingleReplacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/SingleReplacement.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/SingleReplacementSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/SingleReplacementSet.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/SpanSeparatorSplitEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/SpanSeparatorSplitEnumerator.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/SpecialFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/SpecialFlags.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/SpellCheckResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/SpellCheckResult.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/SpellCheckResultType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/SpellCheckResultType.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/StreamEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/StreamEx.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/StringBuilderSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/StringBuilderSpan.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/StringEx.HashCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/StringEx.HashCode.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/StringEx.HunspellTextFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/StringEx.HunspellTextFunctions.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/StringEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/StringEx.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/TextDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/TextDictionary.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/WeCantSpell.Hunspell.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/WeCantSpell.Hunspell.csproj -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/WordEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/WordEntry.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/WordEntryDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/WordEntryDetail.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/WordEntryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/WordEntryOptions.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/WordList.Builder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/WordList.Builder.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/WordList.Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/WordList.Query.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/WordList.QueryCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/WordList.QueryCheck.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/WordList.QuerySuggest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/WordList.QuerySuggest.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/WordList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/WordList.cs -------------------------------------------------------------------------------- /WeCantSpell.Hunspell/WordListReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/WeCantSpell.Hunspell/WordListReader.cs -------------------------------------------------------------------------------- /artifacts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/artifacts/.gitignore -------------------------------------------------------------------------------- /artifacts/bench/results/WeCantSpell.Hunspell.Benchmarks.NHunspell.Suites.CheckEnUsSuite-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/artifacts/bench/results/WeCantSpell.Hunspell.Benchmarks.NHunspell.Suites.CheckEnUsSuite-report-github.md -------------------------------------------------------------------------------- /artifacts/bench/results/WeCantSpell.Hunspell.Benchmarks.NHunspell.Suites.CheckEnUsSuite-report.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/artifacts/bench/results/WeCantSpell.Hunspell.Benchmarks.NHunspell.Suites.CheckEnUsSuite-report.csv -------------------------------------------------------------------------------- /artifacts/bench/results/WeCantSpell.Hunspell.Benchmarks.NHunspell.Suites.CheckEnUsSuite-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/artifacts/bench/results/WeCantSpell.Hunspell.Benchmarks.NHunspell.Suites.CheckEnUsSuite-report.html -------------------------------------------------------------------------------- /artifacts/bench/results/WeCantSpell.Hunspell.Benchmarks.NHunspell.Suites.SuggestEnUsSuite-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/artifacts/bench/results/WeCantSpell.Hunspell.Benchmarks.NHunspell.Suites.SuggestEnUsSuite-report-github.md -------------------------------------------------------------------------------- /artifacts/bench/results/WeCantSpell.Hunspell.Benchmarks.NHunspell.Suites.SuggestEnUsSuite-report.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/artifacts/bench/results/WeCantSpell.Hunspell.Benchmarks.NHunspell.Suites.SuggestEnUsSuite-report.csv -------------------------------------------------------------------------------- /artifacts/bench/results/WeCantSpell.Hunspell.Benchmarks.NHunspell.Suites.SuggestEnUsSuite-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/artifacts/bench/results/WeCantSpell.Hunspell.Benchmarks.NHunspell.Suites.SuggestEnUsSuite-report.html -------------------------------------------------------------------------------- /artifacts/bench/results/WeCantSpell.Hunspell.Benchmarks.Suites.CheckEnUsSuite-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/artifacts/bench/results/WeCantSpell.Hunspell.Benchmarks.Suites.CheckEnUsSuite-report-github.md -------------------------------------------------------------------------------- /artifacts/bench/results/WeCantSpell.Hunspell.Benchmarks.Suites.CheckEnUsSuite-report.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/artifacts/bench/results/WeCantSpell.Hunspell.Benchmarks.Suites.CheckEnUsSuite-report.csv -------------------------------------------------------------------------------- /artifacts/bench/results/WeCantSpell.Hunspell.Benchmarks.Suites.CheckEnUsSuite-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/artifacts/bench/results/WeCantSpell.Hunspell.Benchmarks.Suites.CheckEnUsSuite-report.html -------------------------------------------------------------------------------- /artifacts/bench/results/WeCantSpell.Hunspell.Benchmarks.Suites.SuggestEnUsSuite-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/artifacts/bench/results/WeCantSpell.Hunspell.Benchmarks.Suites.SuggestEnUsSuite-report-github.md -------------------------------------------------------------------------------- /artifacts/bench/results/WeCantSpell.Hunspell.Benchmarks.Suites.SuggestEnUsSuite-report.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/artifacts/bench/results/WeCantSpell.Hunspell.Benchmarks.Suites.SuggestEnUsSuite-report.csv -------------------------------------------------------------------------------- /artifacts/bench/results/WeCantSpell.Hunspell.Benchmarks.Suites.SuggestEnUsSuite-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/artifacts/bench/results/WeCantSpell.Hunspell.Benchmarks.Suites.SuggestEnUsSuite-report.html -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/changelog.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/contributing.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/global.json -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/icon.png -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/readme.md -------------------------------------------------------------------------------- /temp-data/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarondandy/WeCantSpell.Hunspell/HEAD/temp-data/readme.md --------------------------------------------------------------------------------