github errata-ai/vale v2.13.0

latest releases: v3.4.2, v3.4.1, v3.4.0...
2 years ago

This release features a new extension point, metric, which is a more abstract implementation of readability:

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"

It allows you to create your own summary-scoped metrics -- be it an existing readability score, an entirely custom metric, or a combination of the two. See the new Readability style for some examples.

Note: As stated in the documentation, the readability extension point is now considered deprecated. Although it will continue working in future releases, we recommend the use of metric going forward.

Changelog

  • fa7e940 refactor: aurora -> pterm
  • cd14775 chore: update Go on GitLab
  • 93f6187 ci: update AppVeyor image to support Go 1.17
  • 1cefe0b refactor: move from io/ioutil to io and os packages
  • a140d30 feat: add Readability style
  • b25a25f feat: Tango-based metric

Don't miss a new vale release

NewReleases is sending notifications on new releases.