-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Document how to check out a fork (#459)
Co-authored-by: Christopher Moyer <[email protected]>
- Loading branch information
Showing
8 changed files
with
38 additions
and
7 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
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,12 +1,13 @@ | ||
extends: substitution | ||
message: Prefer '%s' instead of '%s' | ||
message: When linking in Markdown, use '%s' instead of '%s'. | ||
link: https://grafana.com/docs/writers-toolkit/write/style-guide/style-conventions/#links-and-references | ||
level: warning | ||
level: error | ||
ignorecase: false | ||
action: | ||
name: replace | ||
scope: raw | ||
swap: | ||
Check out: Refer to | ||
See: Refer to | ||
check out: refer to | ||
see: refer to | ||
"Check out \\[": "Refer to [" | ||
"See \\[": "Refer to [" | ||
"check out \\[": "refer to [" | ||
"see \\[": "refer to [" |
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,4 @@ | ||
StylesPath = ../../../ | ||
MinAlertLevel = suggestion | ||
[*.md] | ||
Grafana.ReferTo = YES |
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,4 @@ | ||
testinvalid.md:1:1:Grafana.ReferTo:When linking, use 'Refer to [' instead of 'See ['. | ||
testinvalid.md:2:1:Grafana.ReferTo:When linking, use 'Refer to [' instead of 'Check out ['. | ||
testinvalid.md:4:23:Grafana.ReferTo:When linking, use 'refer to [' instead of 'see ['. | ||
testinvalid.md:5:23:Grafana.ReferTo:When linking, use 'refer to [' instead of 'check out ['. |
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,5 @@ | ||
See [here](https://example.com). | ||
Check out [the link](https://example.com). | ||
|
||
For more information, see [link text](https://example.com). | ||
For more information, check out [link text](https://example.com). |
Empty file.
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 @@ | ||
In order to check out the git repository. |