Skip to content

Commit

Permalink
Do not ignore cSpell on releases.md anymore (fluentassertions#2361)
Browse files Browse the repository at this point in the history
Since typos are awkward in every case :)
  • Loading branch information
ITaluone authored Oct 5, 2023
1 parent e9a0c0e commit 92f4981
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 9 deletions.
20 changes: 14 additions & 6 deletions cSpell.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,30 @@
"words": [
"browsable",
"comparands",
"Doomen",
"formattable",
"unformattable",
"Guids",
"LINQ",
"MVVM",
"parameterless",
"refactorings",
"struct"
"struct",
"reportables",
"Gallio",
"plict",
"enumerables"
],
"patterns": [
{
"name": "Markdown links",
"pattern": "\\((.*)\\)",
"pattern": "/\\[.*\\]\\((.*)\\)/",
"description": ""
},
{
"name": "Contributors",
"pattern": "/\\@.*/g",
"description": "Exclude contributors e.g. from releases.md"
},
{
"name": "Inline code blocks",
"pattern": "\\`([^\\`\\r\\n]+?)\\`",
Expand Down Expand Up @@ -59,6 +68,7 @@
],
"ignoreRegExpList": [
"Markdown links",
"Contributors",
"Markdown code blocks",
"Inline code blocks",
"Link contents",
Expand All @@ -69,7 +79,5 @@
"Frontmatter",
"Liquid Includes"
],
"ignorePaths": [
"docs/_pages/releases.md"
]
"ignorePaths": []
}
6 changes: 3 additions & 3 deletions docs/_pages/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ sidebar:
* `BeLessOrEqualTo`: Use `BeLessThanOrEqualTo`
* Removed the `DefaultValueFormatter.SpacesPerIndentionLevel` property which was added during the development of v6, but wasn't removed before the release of v6 - [#2281](https://github.com/fluentassertions/fluentassertions/pull/2281)
* Dropped direct support for .NET Core 2.x and .NET Core 3.x - [#2302](https://github.com/fluentassertions/fluentassertions/pull/2302)
* `AllSatisfy` now suceeds when asserting that an empty collection satisfies some predicates - [#2321](https://github.com/fluentassertions/fluentassertions/pull/2321)
* `AllSatisfy` now succeeds when asserting that an empty collection satisfies some predicates - [#2321](https://github.com/fluentassertions/fluentassertions/pull/2321)
* `OnlyContain` now succeeds when asserting that an empty collection matches some predicates - [#2350](https://github.com/fluentassertions/fluentassertions/pull/2350)
* Dropped support for `NSpec3` test framework - [#2356](https://github.com/fluentassertions/fluentassertions/pull/2356)

Expand Down Expand Up @@ -92,11 +92,11 @@ sidebar:
* Added `BeOneOf` methods for object comparisons and `IComparable`s - [#2028](https://github.com/fluentassertions/fluentassertions/pull/2028)
* Added `BeCloseTo` and `NotBeCloseTo` to `TimeOnly` - [#2030](https://github.com/fluentassertions/fluentassertions/pull/2030)
* Added new extension methods to be able to write `Exactly.Times(n)`, `AtLeast.Times(n)` and `AtMost.Times(n)` in a more fluent way - [#2047](https://github.com/fluentassertions/fluentassertions/pull/2047)
* Changed `BeEquivalentTo` to treat record structs like records, thus comparing them by member by default - [#2009](https://github.com/fluentassertions/fluentassertions/pull/2009)
* Changed `BeEquivalentTo` to treat `record struct`s like `record`s, thus comparing them by member by default - [#2009](https://github.com/fluentassertions/fluentassertions/pull/2009)

### Fixes
* `PropertyInfoSelector.ThatArePublicOrInternal` now takes the setter into account when determining if a property is `public` or `internal` - [#2082](https://github.com/fluentassertions/fluentassertions/pull/2082)
* Quering properties on classes, e.g. `typeof(MyClass).Properties()`, now also includes static properties - [#2054](https://github.com/fluentassertions/fluentassertions/pull/2054)
* Querying properties on classes, e.g. `typeof(MyClass).Properties()`, now also includes static properties - [#2054](https://github.com/fluentassertions/fluentassertions/pull/2054)
* Nested AssertionScopes now print the inner scope reportables - [#2044](https://github.com/fluentassertions/fluentassertions/pull/2044)
* Throw `ArgumentException` instead of `ArgumentNullException` when a required `string` argument is empty - [#2023](https://github.com/fluentassertions/fluentassertions/pull/2023)
* Assertions on the ordering of a collection of `string`s now uses ordinal comparison when an `IComparer<T>` is not provided - [#2075](https://github.com/fluentassertions/fluentassertions/pull/2075)
Expand Down

0 comments on commit 92f4981

Please sign in to comment.