ZIP
WinGet
Vale
errata.ai · v3.2.0 · x64
Before deploying, verify this file with VirusTotal ↗
Silent Commands
Distributed as a ZIP archive — extract the contents and run the executable directly. No installer is included.
File Identity
Filename
vale_3.2.0_Windows_64-bit.zip
Signature
Status
Upload installer to verify signature
Installer Selection
WinGet Package
Package ID
errata-ai.Vale
Version
v3.2.0
Description
A syntax-aware linter for prose built with speed and extensibility in mind.
License
MIT
↗
Homepage
https://vale.sh/
Installer URL
https://github.com/errata-ai/vale/releases/download/v3.2.0/vale_3.2.0_Windows_64-bit.zip
Release Notes
Script-based actions
This release introduces the ability to write custom, script-based actions, allowing you to create dynamic solutions to your rules using the Tengo scripting language:
text := import("text")
// `match` is provided by Vale and represents the rule's matched text.
made := text.re_replace(`([A-Z]\w+)([A-Z]\w+)`, match, `$1-$2`)
made = text.replace(made, "-", "_", 1)
made = text.to_lower(made)
suggestions := [made]
prefix for capitalization rules
The capitalization extension…