Silent Install HQ
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

SHA256 19e4929bef82b497e1e4ae80e76c7d6af0f52eb3530a6e850640cfbd0e2ae5ab VirusTotal ↗
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
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…