-
-
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 markdown linter to the `gh-pages` workflow. - Fix some lint warnings. - Fix incorrect file name. Contributes to #1639.
- Loading branch information
1 parent
094dec8
commit 305e0c3
Showing
11 changed files
with
119 additions
and
63 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,16 @@ | ||
--- | ||
name: Bug? | ||
about: "... or something not behaving as expected?" | ||
--- | ||
|
||
# Bug Report | ||
|
||
## Summary | ||
|
||
## Expected behavior | ||
|
||
## Actual behaviour | ||
|
||
## Steps / Code to reproduce the problem | ||
|
||
<!-- Best is a [complete runnable example](https://stackoverflow.com/help/mcve) or failing unit test. --> |
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,21 +1,22 @@ | ||
--- | ||
name: How to | ||
about: You have something specific to achieve and the existing documentation hasn't | ||
covered how. | ||
name: How to? | ||
about: You have something specific to achieve and the existing documentation hasn't covered how. | ||
--- | ||
|
||
<!-- | ||
Be sure to check out the ReadMe (https://github.com/App-vNext/Polly/blob/main/README.md) and wiki (https://github.com/App-vNext/Polly/wiki) first! | ||
<!-- | ||
https://github.com/App-vNext/Polly/wiki contains detailed pages on each policy type. Many questions are answered there about policy operation, how to change operation with configuration options, and how to attach behaviour via delegates. Other wiki pages cover [unit-testing](https://github.com/App-vNext/Polly/wiki/Unit-testing-with-Polly), [async usage](https://github.com/App-vNext/Polly/wiki/Asynchronous-action-execution), common patterns, and [using HttpClientFactory in ASP.NET Core 2.1 as the best way to integrate Polly into outbound `HttpClient` calls](https://github.com/App-vNext/Polly/wiki/Polly-and-HttpClientFactory). | ||
Be sure to check out the README (https://github.com/App-vNext/Polly/blob/main/README.md) and documentation (https://www.pollydocs.org/) first! | ||
--> | ||
|
||
**Summary: What are you wanting to achieve?** | ||
# How to? | ||
|
||
**What code or approach do you have so far?** | ||
## What are you wanting to achieve? | ||
|
||
It is _always_ useful to see: | ||
## What code or approach do you have so far? | ||
|
||
+ **code of any policy declarations**, | ||
+ **code of the calls to `.Execute/AndCapture/Async(...)`** | ||
<!-- | ||
Best is a [complete runnable example](https://stackoverflow.com/help/mcve) | ||
--> |
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,16 +1,14 @@ | ||
--- | ||
name: Request | ||
name: Feature Request | ||
about: Suggest a feature request or improvement | ||
|
||
--- | ||
|
||
**Is your feature request related to a specific problem? Or an existing feature? Please describe.** | ||
|
||
|
||
**Describe your proposed or preferred solution**: | ||
# Feature Request | ||
|
||
## Is your feature request related to a specific problem? Or an existing feature? | ||
|
||
**Describe any alternative options you've considered**: | ||
## Describe your proposed or preferred solution | ||
|
||
## Describe any alternative options you've considered | ||
|
||
**Any additional info?** | ||
## Any additional info? |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"MD013": false, | ||
"MD033": { | ||
"allowed_elements": [ | ||
"br", | ||
"img", | ||
"sub" | ||
] | ||
} | ||
} |
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 +1,7 @@ | ||
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). | ||
# 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 |
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,2 +1,4 @@ | ||
# PLACEHOLDER | ||
TODO: Add .NET projects to the *src* folder and run `docfx` to generate **REAL** *API Documentation*! | ||
|
||
TODO: Add .NET projects to the *src* folder and run `docfx` to | ||
generate **REAL** *API Documentation*! |