2021-07-23 17:08:23 -04:00
|
|
|
---
|
|
|
|
# Suggestion: gitlab.ReadingLevel
|
|
|
|
#
|
|
|
|
# Checks the Flesch-Kincaid reading level.
|
|
|
|
#
|
2022-01-05 19:15:57 -05:00
|
|
|
# https://docs.errata.ai/vale/styles#metric
|
|
|
|
extends: metric
|
|
|
|
message: "The grade level - %s - refers to how hard the content is to understand. Aim for 8th grade or lower by using shorter sentences and words."
|
2021-08-31 14:10:24 -04:00
|
|
|
link: https://docs.gitlab.com/ee/development/documentation/testing.html#vale-readability-score
|
2021-07-23 17:08:23 -04:00
|
|
|
level: suggestion
|
2022-01-05 19:15:57 -05:00
|
|
|
formula: |
|
|
|
|
(0.39 * (words / sentences)) + (11.8 * (syllables / words)) - 15.59
|
|
|
|
condition: "> 1"
|