-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add network attached instructions * Update tarball docs * Github does not support titled admons * Clear some lint issues * Clear some galaxy errors * Clear some new lint issues * Fix ansible semver string * Use a supported ansible version * Update file and folder names * Update README instruction o inventory use * Add vale linting, normalized file extensions, and doc tweaks * Revert become change, remove superfluous docs in main readme * adjusting config verbiage --------- Co-authored-by: Adam Leiner <[email protected]>
- Loading branch information
1 parent
757852e
commit 50f9fc2
Showing
37 changed files
with
534 additions
and
281 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,8 @@ | ||
extends: metric | ||
message: "Try to keep the Automated Readability Index (%s) below 8." | ||
link: https://en.wikipedia.org/wiki/Automated_readability_index | ||
|
||
formula: | | ||
(4.71 * (characters / words)) + (0.5 * (words / sentences)) - 21.43 | ||
condition: "> 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,8 @@ | ||
extends: metric | ||
message: "Try to keep the Coleman–Liau Index grade (%s) below 9." | ||
link: https://en.wikipedia.org/wiki/Coleman%E2%80%93Liau_index | ||
|
||
formula: | | ||
(0.0588 * (characters / words) * 100) - (0.296 * (sentences / words) * 100) - 15.8 | ||
condition: "> 9" |
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,8 @@ | ||
extends: metric | ||
message: "Try to keep the Flesch–Kincaid grade level (%s) below 8." | ||
link: https://en.wikipedia.org/wiki/Flesch%E2%80%93Kincaid_readability_tests | ||
|
||
formula: | | ||
(0.39 * (words / sentences)) + (11.8 * (syllables / words)) - 15.59 | ||
condition: "> 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,8 @@ | ||
extends: metric | ||
message: "Try to keep the Flesch reading ease score (%s) above 70." | ||
link: https://en.wikipedia.org/wiki/Flesch%E2%80%93Kincaid_readability_tests | ||
|
||
formula: | | ||
206.835 - (1.015 * (words / sentences)) - (84.6 * (syllables / words)) | ||
condition: "< 70" |
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,8 @@ | ||
extends: metric | ||
message: "Try to keep the Gunning-Fog index (%s) below 10." | ||
link: https://en.wikipedia.org/wiki/Gunning_fog_index | ||
|
||
formula: | | ||
0.4 * ((words / sentences) + 100 * (complex_words / words)) | ||
condition: "> 10" |
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,17 @@ | ||
extends: metric | ||
message: "Try to keep the LIX score (%s) below 35." | ||
|
||
link: https://en.wikipedia.org/wiki/Lix_(readability_test) | ||
# Very Easy: 20 - 25 | ||
# | ||
# Easy: 30 - 35 | ||
# | ||
# Medium: 40 - 45 | ||
# | ||
# Difficult: 50 - 55 | ||
# | ||
# Very Difficult: 60+ | ||
formula: | | ||
(words / sentences) + ((long_words * 100) / words) | ||
condition: "> 35" |
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,8 @@ | ||
extends: metric | ||
message: "Try to keep the SMOG grade (%s) below 10." | ||
link: https://en.wikipedia.org/wiki/SMOG | ||
|
||
formula: | | ||
1.0430 * math.sqrt((polysyllabic_words * 30.0) / sentences) + 3.1291 | ||
condition: "> 10" |
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 @@ | ||
{ | ||
"feed": "https://github.com/errata-ai/Readability/releases.atom", | ||
"vale_version": ">=2.13.0" | ||
} |
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,18 @@ | ||
# Common/valid Slang | ||
[C|c]onfig | ||
airgap | ||
|
||
# Acronyms | ||
STIG | ||
|
||
# Tools | ||
[A|a]nsible | ||
|
||
# Kubernetes | ||
Kubernetes | ||
[K|k]ubeconfig | ||
|
||
# Linux | ||
[F|f]apolicyd | ||
containerd | ||
SELinux |
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 |
---|---|---|
|
@@ -5,6 +5,7 @@ venv/ | |
.venv/ | ||
|
||
test_inventory* | ||
inventory* | ||
|
||
sample_files/tarball_install/* | ||
!sample_files/tarball_install/README.md |
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 @@ | ||
StylesPath = ./.github/vale | ||
|
||
MinAlertLevel = suggestion | ||
Vocab = RGS | ||
|
||
Packages = Readability | ||
|
||
[*.md] | ||
BasedOnStyles = Vale, Readability | ||
|
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,2 @@ | ||
--- | ||
releases: {} |
Oops, something went wrong.