-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
17 changed files
with
93 additions
and
35 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
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 |
---|---|---|
|
@@ -126,6 +126,8 @@ exceptions: | |
- PPP | ||
- PROM | ||
- PTP | ||
- PV | ||
- PVC | ||
- PXE | ||
- QCOW2 | ||
- QEMU | ||
|
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,12 @@ | ||
--- | ||
extends: existence | ||
message: Do not include a link to %s unless it is explicitly approved. | ||
link: https://redhat-documentation.github.io/vale-at-red-hat/docs/main/reference-guide/gitlinks/ | ||
ignorecase: true | ||
level: warning | ||
scope: raw | ||
action: | ||
name: remove | ||
tokens: | ||
- 'https:\/\/gitlab\.com\/.*' | ||
- 'https:\/\/github\.com\/(?!openshift|redhat-developer).*' |
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
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,9 @@ | ||
--- | ||
extends: readability | ||
grade: 21 | ||
level: suggestion | ||
grade: 9 | ||
message: "Simplify your language. The calculated Flesch–Kincaid grade level of %s is above the recommended reading grade level of 9." | ||
link: https://redhat-documentation.github.io/vale-at-red-hat/docs/main/reference-guide/readabilitygrade/ | ||
message: "Grade level ('%s') too high." | ||
level: suggestion | ||
metrics: | ||
- Automated Readability | ||
- Coleman-Liau | ||
- Flesch-Kincaid | ||
- Gunning Fog | ||
- SMOG | ||
|
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 |
---|---|---|
|
@@ -24,3 +24,4 @@ exceptions: | |
- "upstream/downstream" | ||
- "z/OS" | ||
- "z/OSMF" | ||
- "[Kk]ey/value" |
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
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,8 +1,16 @@ | ||
--- | ||
extends: substitution | ||
message: "%s." | ||
link: https://redhat-documentation.github.io/vale-at-red-hat/docs/main/reference-guide/userreplacedvalues/ | ||
extends: existence | ||
level: suggestion | ||
message: "Separate words by underscores in user-replaced values." | ||
link: https://redhat-documentation.github.io/vale-at-red-hat/docs/main/reference-guide/userreplacedvalues/ | ||
scope: raw | ||
swap: | ||
'__<[a-z_\x60]+-[\x60a-z_-]+>__': Separate words by underscores in user-replaced values | ||
nonword: true | ||
action: | ||
name: edit | ||
params: | ||
- regex | ||
- "(-)" # pattern | ||
- "_" # replace | ||
tokens: | ||
- '__<[a-z_\x60]+-[\x60a-z_-]+>__' | ||
- '<[a-z_]+-[a-z_-]+>' |
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,14 @@ | ||
--- | ||
extends: sequence | ||
message: "Use 'by using' instead of 'using' when it follows a noun for clarity and grammatical correctness." | ||
link: https://redhat-documentation.github.io/vale-at-red-hat/docs/main/reference-guide/using/ | ||
level: warning | ||
action: | ||
name: edit | ||
params: | ||
- regex | ||
- '(\w+)( using)' # pattern | ||
- "$1 by using" # replace | ||
tokens: | ||
- tag: NN|NNP|NNPS|NNS | ||
- pattern: using |