-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add a spell checker for Markdown files. - Fix various typos found by the linter (or change wording to "fix" them). Resolves #1639.
- Loading branch information
1 parent
6e4ce27
commit 3040bfa
Showing
18 changed files
with
182 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
matrix: | ||
- name: Markdown | ||
aspell: | ||
ignore-case: true | ||
lang: en | ||
dictionary: | ||
encoding: utf-8 | ||
wordlists: | ||
- .github/wordlist.txt | ||
pipeline: | ||
- pyspelling.filters.url: | ||
- pyspelling.filters.markdown: | ||
markdown_extensions: | ||
- markdown.extensions.extra | ||
- pymdownx.superfences | ||
- pyspelling.filters.context: | ||
context_visible_first: true | ||
escapes: \\[\\`~] | ||
delimiters: | ||
# Ignore text between inline back ticks | ||
- open: '(?P<open>`+)' | ||
close: '(?P=open)' | ||
- pyspelling.filters.html: | ||
comments: false | ||
ignores: | ||
- code | ||
- pre | ||
sources: | ||
- '!CHANGELOG.md|!**/BenchmarkDotNet.Artifacts/**/*.md|!docs/community/resources.md|!docs/community/libraries-and-contributions.md|**/*.md' | ||
default_encoding: utf-8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
alloc | ||
apis | ||
async | ||
azurefunctions | ||
bcl | ||
bdd | ||
cancellable | ||
changelog | ||
circuitbreaker | ||
comparer | ||
contrib | ||
deserialization | ||
dotnet | ||
dotnetrocks | ||
durations | ||
eshoponcontainers | ||
extensibility | ||
flurl | ||
hangfire | ||
jetbrains | ||
jitter | ||
jittered | ||
json | ||
loggingpolicy | ||
markdownsnippets | ||
minver | ||
moq | ||
namespace | ||
natively | ||
ndc | ||
nuget | ||
oss | ||
pcl | ||
parallelize | ||
pluralsight | ||
pollydocs | ||
pre | ||
rabbitmq | ||
ratelimiting | ||
ratiosd | ||
readme | ||
resharper | ||
rethrow | ||
rethrows | ||
retryable | ||
reusability | ||
sdk | ||
serializers | ||
silverlight | ||
simmy | ||
stackexchange | ||
stddev | ||
struct | ||
synchronizationcontext | ||
telemetryeventarguments | ||
telemetrylistener | ||
testability | ||
timingpolicy | ||
ui | ||
uwp | ||
waitandretry | ||
wpf | ||
xunit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,4 @@ | ||
# Code of Conduct | ||
|
||
Polly is part of the [.NET Foundation][dnf], and we ask our contributors to abide | ||
by their [Code of Conduct][dnf-coc]. | ||
|
||
[dnf]: https://dotnetfoundation.org/ | ||
[dnf-coc]: https://www.dotnetfoundation.org/code-of-conduct | ||
Polly is part of the [.NET Foundation](https://dotnetfoundation.org/), and we ask our contributors to abide | ||
by their [Code of Conduct](https://www.dotnetfoundation.org/code-of-conduct). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Chaos engineering with Simmy | ||
|
||
[Simmy][simmy] is a major new companion project adding a chaos-engineering and fault-injection dimension to Polly, through the provision of policies to selectively inject faults or latency. | ||
Head over to the [Simmy][simmy] repo to find out more. | ||
Head over to the [Simmy][simmy] repository to find out more. | ||
|
||
[simmy]: https://github.com/Polly-Contrib/Simmy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
# PLACEHOLDER | ||
|
||
TODO: Add .NET projects to the *src* folder and run `docfx` to | ||
generate **REAL** *API Documentation*! | ||
`docfx` automatically generates this file when GitHub Pages are built. |
Oops, something went wrong.